1 package org.exoplatform.services.wsrp.consumer; 2 3 import java.util.Iterator ; 4 5 15 public interface GroupSession { 16 17 22 public String getGroupID(); 23 24 33 public PortletSession getPortletSession(String instanceKey); 34 35 40 public Iterator getAllPortletSessions(); 41 42 48 public boolean existsPortletSession(String instanceKey); 49 50 55 public void setGroupID(String groupID); 56 57 60 public void addPortletSession(PortletSession portletSession); 61 62 69 public void removePortletSession(String instanceKey); 70 71 75 public void removeAllPortletSessions(); 76 77 } 78 | Popular Tags |