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.CommitteeReportsRequest;
9   import com.hack23.cia.service.api.user.CommitteeReportsResponse;
10  import com.hack23.cia.web.action.user.CommitteeReportsAction;
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.CommitteeReportsModelAndView;
14  import com.hack23.cia.web.viewfactory.api.user.CommitteeReportsModelAndView.CommitteeReportsViewSpecification;
15  
16  /***
17   * The Class CommitteeReportsActionHandler.
18   */
19  public class CommitteeReportsActionHandler
20          extends
21          AbstractUserActionHandler<CommitteeReportsAction, CommitteeReportsRequest, CommitteeReportsResponse> {
22  
23      /***
24       * Instantiates a new committee reports action handler.
25       *
26       * @param viewFactoryService the view factory service
27       * @param applicationManager the application manager
28       */
29      public CommitteeReportsActionHandler(
30              final ViewFactoryService viewFactoryService,
31              final ApplicationManager applicationManager) {
32          super(viewFactoryService, applicationManager);
33      }
34  
35      /*
36       * (non-Javadoc)
37       * 
38       * @seecom.hack23.cia.web.controller.common.AbstractGenericHandler#
39       * createServiceRequest(com.hack23.cia.web.action.common.AbstractAction)
40       */
41      @Override
42      public final CommitteeReportsRequest createServiceRequest(
43              final CommitteeReportsAction action) {
44          return new CommitteeReportsRequest(getUserStateService()
45                  .getUserSessionId());
46      }
47  
48      /*
49       * (non-Javadoc)
50       * 
51       * @see com.hack23.cia.web.controller.ActionHandler#getSupportedAction()
52       */
53      @SuppressWarnings("unchecked")
54      @Override
55      public final Class getSupportedAction() {
56          return CommitteeReportsAction.class;
57      }
58  
59      /*
60       * (non-Javadoc)
61       * 
62       * @seecom.hack23.cia.web.controller.common.AbstractGenericHandler#
63       * handleSuccessResponse(com.hack23.cia.web.action.common.AbstractAction,
64       * com.hack23.cia.service.api.common.AbstractServiceResponse)
65       */
66      @Override
67      public final ModelAndView handleSuccessResponse(
68              final CommitteeReportsAction action,
69              final CommitteeReportsResponse response) {
70          return new CommitteeReportsModelAndView(response.getUserSessionDTO(),
71                  action,
72                  CommitteeReportsViewSpecification.CommitteeReportsTreeView,
73                  response.getCommitteeReports());
74      }
75  }