View Javadoc

1   /*
2   Copyright 2010 James Pether Sörling Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
3   	$Id
4   */
5   package com.hack23.cia.web.controller.user;
6   
7   import com.hack23.cia.service.api.application.ApplicationManager;
8   import com.hack23.cia.service.api.user.BallotRequest;
9   import com.hack23.cia.service.api.user.BallotResponse;
10  import com.hack23.cia.web.action.user.BallotAction;
11  import com.hack23.cia.web.viewfactory.api.common.ModelAndView;
12  import com.hack23.cia.web.viewfactory.api.common.ViewFactoryService;
13  import com.hack23.cia.web.viewfactory.api.user.VotesModelAndView;
14  import com.hack23.cia.web.viewfactory.api.user.VotesModelAndView.VotesViewSpecification;
15  
16  /***
17   * The Class BallotActionHandler.
18   */
19  public class BallotActionHandler extends
20          AbstractUserActionHandler<BallotAction, BallotRequest, BallotResponse> {
21  
22      /***
23       * Instantiates a new ballot action handler.
24       *
25       * @param viewFactoryService the view factory service
26       * @param applicationManager the application manager
27       */
28      public BallotActionHandler(final ViewFactoryService viewFactoryService,
29              final ApplicationManager applicationManager) {
30          super(viewFactoryService, applicationManager);
31      }
32  
33      /*
34       * (non-Javadoc)
35       * 
36       * @seecom.hack23.cia.web.controller.common.AbstractGenericHandler#
37       * createServiceRequest(com.hack23.cia.web.action.common.AbstractAction)
38       */
39      @Override
40      public final BallotRequest createServiceRequest(final BallotAction action) {
41          return new BallotRequest(getUserStateService().getUserSessionId(),
42                  action.getBallotId());
43      }
44  
45      /*
46       * (non-Javadoc)
47       * 
48       * @see com.hack23.cia.web.controller.ActionHandler#getSupportedAction()
49       */
50      @SuppressWarnings("unchecked")
51      @Override
52      public final Class getSupportedAction() {
53          return BallotAction.class;
54      }
55  
56      /*
57       * (non-Javadoc)
58       * 
59       * @seecom.hack23.cia.web.controller.common.AbstractGenericHandler#
60       * handleSuccessResponse(com.hack23.cia.web.action.common.AbstractAction,
61       * com.hack23.cia.service.api.common.AbstractServiceResponse)
62       */
63      @Override
64      public final ModelAndView handleSuccessResponse(final BallotAction action,
65              final BallotResponse response) {
66          return new VotesModelAndView(response.getUserSessionDTO(), action,
67                  VotesViewSpecification.BallotView, response
68                          .getFindLastVotesByBallotId());
69      }
70  
71  }