1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.struts;
16  
17  import com.liferay.portal.util.WebKeys;
18  
19  import javax.servlet.ServletConfig;
20  import javax.servlet.ServletContext;
21  import javax.servlet.ServletException;
22  
23  import org.apache.struts.Globals;
24  import org.apache.struts.action.ActionServlet;
25  import org.apache.struts.config.ModuleConfig;
26  
27  /**
28   * <a href="PortletActionServlet.java.html"><b><i>View Source</i></b></a>
29   *
30   * @author Brian Wing Shun Chan
31   */
32  public class PortletActionServlet extends ActionServlet {
33  
34      public void init(ServletConfig servletConfig) throws ServletException {
35          super.init(servletConfig);
36  
37          ServletContext servletContext = getServletContext();
38  
39          ModuleConfig moduleConfig =
40              (ModuleConfig)servletContext.getAttribute(Globals.MODULE_KEY);
41  
42          PortletRequestProcessor portletRequestProcessor =
43              PortletRequestProcessor.getInstance(this, moduleConfig);
44  
45          servletContext.setAttribute(
46              WebKeys.PORTLET_STRUTS_PROCESSOR, portletRequestProcessor);
47      }
48  
49  }