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.common;
6   
7   import com.hack23.cia.service.api.application.ApplicationManager;
8   import com.hack23.cia.service.api.common.ApplicationErrorRequest;
9   import com.hack23.cia.service.api.common.ApplicationErrorResponse;
10  import com.hack23.cia.web.action.common.ApplicationErrorAction;
11  import com.hack23.cia.web.viewfactory.api.common.ErrorMessageModelAndView;
12  import com.hack23.cia.web.viewfactory.api.common.ModelAndView;
13  import com.hack23.cia.web.viewfactory.api.common.ViewFactoryService;
14  import com.hack23.cia.web.viewfactory.api.common.ErrorMessageModelAndView.ErrorViewSpecification;
15  
16  /***
17   * The Class ApplicationErrorActionHandler.
18   */
19  public class ApplicationErrorActionHandler
20          extends
21          AbstractGenericHandler<ApplicationErrorAction, ApplicationErrorRequest, ApplicationErrorResponse> {
22  
23      /***
24       * Instantiates a new application error action handler.
25       *
26       * @param viewFactoryService the view factory service
27       * @param applicationManager the application manager
28       */
29      public ApplicationErrorActionHandler(
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 ApplicationErrorRequest createServiceRequest(
43              final ApplicationErrorAction action) {
44          return new ApplicationErrorRequest(getUserStateService().getUserSessionId(),action.getStackTraceElements(),action.getErrorMessage());
45      }
46  
47      /*
48       * (non-Javadoc)
49       * 
50       * @see com.hack23.cia.web.controller.ActionHandler#getSupportedAction()
51       */
52      @SuppressWarnings("unchecked")
53      @Override
54      public final Class getSupportedAction() {
55          return ApplicationErrorAction.class;
56      }
57  
58      /*
59       * (non-Javadoc)
60       * 
61       * @seecom.hack23.cia.web.controller.common.AbstractGenericHandler#
62       * handleSuccessResponse(com.hack23.cia.web.action.common.AbstractAction,
63       * com.hack23.cia.service.api.common.AbstractServiceResponse)
64       */
65      @Override
66      public final ModelAndView handleSuccessResponse(
67              final ApplicationErrorAction action, final ApplicationErrorResponse response) {
68          final ApplicationErrorResponse applicationErrorResponse = response;
69          return new ErrorMessageModelAndView(response.getUserSessionDTO(), action, ErrorViewSpecification.ErrorMessageView, applicationErrorResponse.getErrorMessage());
70      }
71  
72  }