1 /*
2 * Copyright 2004 Jonathan M. Lehr
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS"
10 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language
11 * governing permissions and limitations under the License.
12 *
13 */
14
15 // begin Kuali Foundation modification
16 package org.kuali.rice.kns.web.struts.pojo;
17
18 // deleted some imports
19 // end Kuali Foundation modification
20
21
22 import java.util.logging.Logger;
23
24 import javax.servlet.ServletException;
25
26 import org.apache.commons.beanutils.BeanUtilsBean;
27 import org.apache.commons.beanutils.ConvertUtilsBean;
28 import org.apache.commons.beanutils.PropertyUtilsBean;
29 import org.apache.struts.action.ActionServlet;
30 import org.apache.struts.action.PlugIn;
31 import org.apache.struts.config.ModuleConfig;
32
33 /**
34 * begin Kuali Foundation modification
35 * This class is the POJO Plugin implementation of the PlugIn interface.
36 * end Kuali Foundation modification
37 *
38 * @author Kuali Rice Team (rice.collab@kuali.org)
39 */
40 // Kuali Foundation modification: class originally named SL plugin
41 public class PojoPlugin implements PlugIn {
42 static final Logger logger = Logger.getLogger(PojoPlugin.class.getName());
43
44 public PojoPlugin() {
45 }
46
47 public void init(ActionServlet servlet, ModuleConfig config) throws ServletException {
48 // begin Kuali Foundation modification
49 ConvertUtilsBean convUtils = new ConvertUtilsBean();
50 PropertyUtilsBean propUtils = new PojoPropertyUtilsBean();
51 BeanUtilsBean pojoBeanUtils = new BeanUtilsBean(convUtils, propUtils);
52
53 BeanUtilsBean.setInstance(pojoBeanUtils);
54 logger.fine("Initialized BeanUtilsBean with " + pojoBeanUtils);
55 // end Kuali Foundation modification
56 }
57
58 public void destroy() {
59 }
60 }