1 16 19 20 package org.apache.pluto.factory.impl; 21 22 import javax.portlet.PortletSession; 23 24 import org.apache.pluto.core.impl.PortletSessionImpl; 25 import org.apache.pluto.factory.PortletSessionFactory; 26 import org.apache.pluto.om.window.PortletWindow; 27 28 public class PortletSessionFactoryImpl implements PortletSessionFactory { 29 30 public void init(javax.servlet.ServletConfig config, java.util.Map properties) throws Exception 31 { 32 } 33 34 public PortletSession getPortletSession(PortletWindow portletWindow, 36 javax.servlet.http.HttpSession httpSession) 37 { 38 return new PortletSessionImpl(portletWindow, httpSession); 39 } 40 42 public void destroy() throws Exception 44 { 45 } 46 } 48 | Popular Tags |