View Javadoc

1   /**
2    * Copyright 2005-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.sampleu.travel.krad.controller;
17  
18  import javax.servlet.http.HttpServletRequest;
19  import javax.servlet.http.HttpServletResponse;
20  
21  import org.kuali.rice.krad.uif.UifParameters;
22  import org.kuali.rice.krad.util.GlobalVariables;
23  import org.kuali.rice.krad.web.controller.UifControllerBase;
24  import org.kuali.rice.krad.web.form.UifFormBase;
25  import org.springframework.stereotype.Controller;
26  import org.springframework.validation.BindingResult;
27  import org.springframework.web.bind.annotation.ModelAttribute;
28  import org.springframework.web.bind.annotation.RequestMapping;
29  import org.springframework.web.bind.annotation.RequestMethod;
30  import org.springframework.web.servlet.ModelAndView;
31  
32  import edu.sampleu.travel.krad.form.UILayoutTestForm;
33  
34  /**
35   * Controller for the Test UI Page
36   * 
37   * @author Kuali Rice Team (rice.collab@kuali.org)
38   */
39  @Controller
40  @RequestMapping(value = "/uicomponents")
41  public class UIComponentsTestController extends UifControllerBase {
42  
43      /**
44       * @see org.kuali.rice.krad.web.controller.UifControllerBase#createInitialForm(javax.servlet.http.HttpServletRequest)
45       */
46      @Override
47      protected UILayoutTestForm createInitialForm(HttpServletRequest request) {
48          return new UILayoutTestForm();
49      }
50  
51  	@Override
52  	@RequestMapping(params = "methodToCall=start")
53  	public ModelAndView start(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
54  			HttpServletRequest request, HttpServletResponse response) {
55  	    UILayoutTestForm uiTestForm = (UILayoutTestForm) form;
56  
57  		return super.start(uiTestForm, result, request, response);
58  	}
59  
60  	@RequestMapping(method = RequestMethod.POST, params = "methodToCall=save")
61  	public ModelAndView save(@ModelAttribute("KualiForm") UILayoutTestForm uiTestForm, BindingResult result,
62  			HttpServletRequest request, HttpServletResponse response) {
63  
64  		return getUIFModelAndView(uiTestForm, "page2");
65  	}
66  	
67  	@RequestMapping(method = RequestMethod.POST, params = "methodToCall=close")
68  	public ModelAndView close(@ModelAttribute("KualiForm") UILayoutTestForm uiTestForm, BindingResult result,
69  			HttpServletRequest request, HttpServletResponse response) {
70  
71  		return getUIFModelAndView(uiTestForm, "page1");
72  	}
73  
74      /**
75       * Handles menu navigation between view pages
76       */
77      @RequestMapping(method = RequestMethod.POST, params = "methodToCall=navigate")
78      public ModelAndView navigate(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
79              HttpServletRequest request, HttpServletResponse response) {
80          String pageId = form.getActionParamaterValue(UifParameters.NAVIGATE_TO_PAGE_ID);
81  
82          if(pageId.equals("uifpage7")){
83              GlobalVariables.getMessageMap().putError("gField1", "serverTestError");
84              GlobalVariables.getMessageMap().putError("gField1", "serverTestError2");
85              GlobalVariables.getMessageMap().putError("gField2", "serverTestError");
86              GlobalVariables.getMessageMap().putError("gField3", "serverTestError");
87              GlobalVariables.getMessageMap().putWarning("gField1", "serverTestWarning");
88              GlobalVariables.getMessageMap().putWarning("gField2", "serverTestWarning");
89              GlobalVariables.getMessageMap().putInfo("gField2", "serverTestInfo");
90              GlobalVariables.getMessageMap().putInfo("gField3", "serverTestInfo");
91          }
92          // only refreshing page
93          form.setRenderFullView(false);
94  
95          return getUIFModelAndView(form, pageId);
96      }
97  
98      @RequestMapping(method = RequestMethod.POST, params = "methodToCall=refreshProgGroup")
99  	public ModelAndView refreshProgGroup(@ModelAttribute("KualiForm") UILayoutTestForm uiTestForm, BindingResult result,
100 			HttpServletRequest request, HttpServletResponse response) {
101 
102 		return updateComponent(uiTestForm, result, request, response);
103 	}
104 }