1 16 19 20 package org.apache.pluto.factory.impl; 21 22 import java.util.Map ; 23 24 import javax.portlet.ActionRequest; 25 import javax.servlet.ServletConfig ; 26 27 import org.apache.pluto.core.impl.ActionRequestImpl; 28 import org.apache.pluto.factory.ActionRequestFactory; 29 import org.apache.pluto.om.window.PortletWindow; 30 31 39 public class ActionRequestFactoryImpl implements ActionRequestFactory { 40 41 44 public void init(ServletConfig config, Map properties) throws Exception { 45 } 46 47 public ActionRequest getActionRequest(PortletWindow portletWindow, 49 javax.servlet.http.HttpServletRequest servletRequest, 50 javax.servlet.http.HttpServletResponse servletResponse) 51 { 52 ActionRequest actionRequest = new ActionRequestImpl(portletWindow, servletRequest); 53 return actionRequest; 54 } 55 57 61 public void destroy() throws Exception { 62 } 63 } 65 | Popular Tags |