Java tutorial
/** * Copyright 2005-2014 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * 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. */ package edu.sampleu.demo.kitchensink; import org.apache.commons.lang.RandomStringUtils; import org.kuali.rice.krad.util.GlobalVariables; import org.kuali.rice.krad.web.controller.UifControllerBase; import org.kuali.rice.krad.web.form.UifFormBase; import org.springframework.stereotype.Controller; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * a controller for the configuration test view * * @author Kuali Rice Team (rice.collab@kuali.org) */ @Controller @RequestMapping(value = "/configuration-test-view-uif-controller") public class ConfigurationTestViewUifController extends UifControllerBase { @Override protected UifFormBase createInitialForm() { return new UifComponentsTestForm(); } /** * places a message containing apostrophes into the message map for display as a growl */ @Override @RequestMapping(params = "methodToCall=start") public ModelAndView start(UifFormBase form) { String randomYear = RandomStringUtils.randomNumeric(2); GlobalVariables.getMessageMap().putInfo("growl.testing.apostrophe", "sampleapp.growl.testmsg", "'" + randomYear); return super.start(form); } }