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 *
38 * @deprecated KNS Struts deprecated, use KRAD and the Spring MVC framework.
39 * end Kuali Foundation modification
40 *
41 * @author Kuali Rice Team (rice.collab@kuali.org)
42 */
43 // Kuali Foundation modification: class originally named SL plugin
44 @Deprecated
45 public class PojoPlugin implements PlugIn {
46 static final Logger logger = Logger.getLogger(PojoPlugin.class.getName());
47
48 public static void initBeanUtils() {
49 // begin Kuali Foundation modification
50 ConvertUtilsBean convUtils = new ConvertUtilsBean();
51 PropertyUtilsBean propUtils = new PojoPropertyUtilsBean();
52 BeanUtilsBean pojoBeanUtils = new BeanUtilsBean(convUtils, propUtils);
53
54 BeanUtilsBean.setInstance(pojoBeanUtils);
55 logger.fine("Initialized BeanUtilsBean with " + pojoBeanUtils);
56 // end Kuali Foundation modification
57 }
58
59 public PojoPlugin() {
60 }
61
62 public void init(ActionServlet servlet, ModuleConfig config) throws ServletException {
63 initBeanUtils();
64 // override the Struts ControllerConfig with our own wrapper that knows how to
65 // dynamically find max file upload size according to Rice run-time settings
66 config.setControllerConfig(new KualiControllerConfig(config.getControllerConfig()));
67 }
68
69 public void destroy() {
70 }
71 }