View Javadoc

1   /*
2    * Copyright 2006-2012 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  
17  package edu.sampleu.demo.kitchensink;
18  
19  import org.apache.commons.lang.RandomStringUtils;
20  import org.kuali.rice.krad.util.GlobalVariables;
21  import org.kuali.rice.krad.web.controller.UifControllerBase;
22  import org.kuali.rice.krad.web.form.UifFormBase;
23  import org.springframework.stereotype.Controller;
24  import org.springframework.validation.BindingResult;
25  import org.springframework.web.bind.annotation.ModelAttribute;
26  import org.springframework.web.bind.annotation.RequestMapping;
27  import org.springframework.web.servlet.ModelAndView;
28  
29  import javax.servlet.http.HttpServletRequest;
30  import javax.servlet.http.HttpServletResponse;
31  
32  /**
33   * a controller for the configuration test view
34   *
35   * @author Kuali Rice Team (rice.collab@kuali.org)
36   */
37  @Controller
38  @RequestMapping(value = "/configuration-test-view-uif-controller")
39  public class ConfigurationTestViewUifController extends UifControllerBase {
40  
41      @Override
42      protected UifFormBase createInitialForm(HttpServletRequest request) {
43          return new UifComponentsTestForm();
44      }
45  
46      /**
47       * places a message containing apostrophes into the message map for display as a growl
48       */
49      @Override
50      @RequestMapping(params = "methodToCall=start")
51      public ModelAndView start(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
52              HttpServletRequest request, HttpServletResponse response) {
53          String randomYear = RandomStringUtils.randomNumeric(2);
54          GlobalVariables.getMessageMap().putInfo("growl.testing.apostrophe", "sampleapp.growl.testmsg", "'" + randomYear);
55  
56          return super.start(form, result, request, response);
57      }
58  }