1 package org.exoplatform.services.wsrp.consumer; 2 3 4 import java.util.Iterator ; 5 import org.exoplatform.services.wsrp.type.SessionContext; 6 7 17 public interface PortletSession { 18 24 public String getPortletHandle(); 25 26 32 public void setPortletHandle(String portletHandle); 33 34 42 public SessionContext getSessionContext(); 43 44 49 public void setSessionContext(SessionContext sessionContext); 50 51 57 public PortletWindowSession getPortletWindowSession(String windowID); 58 59 64 public Iterator getAllPorletWindowSessions(); 65 66 72 public PortletWindowSession removePortletWindowSession(String windowID); 73 74 77 public void removeAllPortletWindowSessions(); 78 } 79 | Popular Tags |