1 /**
2 * Copyright 2005-2014 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 // begin Kuali Foundation modification
17 package org.kuali.rice.kns.web.struts.form.pojo;
18
19 // deleted some imports
20 // end Kuali Foundation modification
21
22
23 import org.apache.commons.beanutils.BeanUtilsBean;
24 import org.apache.commons.beanutils.ConvertUtilsBean;
25 import org.apache.commons.beanutils.PropertyUtilsBean;
26 import org.apache.struts.action.ActionServlet;
27 import org.apache.struts.action.PlugIn;
28 import org.apache.struts.config.ModuleConfig;
29 import org.kuali.rice.kns.web.struts.config.KualiControllerConfig;
30
31 import javax.servlet.ServletException;
32 import java.util.logging.Logger;
33
34 /**
35 * begin Kuali Foundation modification
36 * This class is the POJO Plugin implementation of the PlugIn interface.
37 * end Kuali Foundation modification
38 *
39 * @author Kuali Rice Team (rice.collab@kuali.org)
40 */
41 // Kuali Foundation modification: class originally named SL plugin
42 public class PojoPlugin implements PlugIn {
43 static final Logger logger = Logger.getLogger(PojoPlugin.class.getName());
44
45 public static void initBeanUtils() {
46 // begin Kuali Foundation modification
47 ConvertUtilsBean convUtils = new ConvertUtilsBean();
48 PropertyUtilsBean propUtils = new PojoPropertyUtilsBean();
49 BeanUtilsBean pojoBeanUtils = new BeanUtilsBean(convUtils, propUtils);
50
51 BeanUtilsBean.setInstance(pojoBeanUtils);
52 logger.fine("Initialized BeanUtilsBean with " + pojoBeanUtils);
53 // end Kuali Foundation modification
54 }
55
56 public PojoPlugin() {
57 }
58
59 public void init(ActionServlet servlet, ModuleConfig config) throws ServletException {
60 initBeanUtils();
61 // override the Struts ControllerConfig with our own wrapper that knows how to
62 // dynamically find max file upload size according to Rice run-time settings
63 config.setControllerConfig(new KualiControllerConfig(config.getControllerConfig()));
64 }
65
66 public void destroy() {
67 }
68 }