1 16 19 20 package org.apache.pluto.portalImpl.servlet; 21 22 import javax.servlet.http.HttpServletRequest ; 23 24 import org.apache.pluto.om.window.PortletWindow; 25 26 public class ServletRequestFactoryImpl implements ServletRequestFactory 27 { 28 29 31 public HttpServletRequest getServletRequest(HttpServletRequest request, PortletWindow portletWindow) 32 { 33 HttpServletRequest servletRequest = new ServletRequestImpl(request, portletWindow); 34 return servletRequest; 35 } 36 37 public void init(javax.servlet.ServletConfig config, java.util.Map properties) 39 throws Exception 40 { 41 } 43 44 public void destroy() 45 throws Exception 46 { 47 } 49 50 } 51 | Popular Tags |