| |
|
| org.apache.wsrp4j.consumer.UserSession
UserSession | public interface UserSession (Code) | | A consumer based session which represents a user session with a certain producer.
This user session contains one or more group sessions.
See Also: GroupSession author: Stephan Laertz author: Peter Fischer |
addGroupSession | public void addGroupSession(GroupSession groupSession)(Code) | | Add a group session to the user session
Parameters: groupSession - A group session |
getAllGroupSessions | public Iterator getAllGroupSessions()(Code) | | Get all group session
Iterator with all group sessions for the given producer access point |
getGroupSession | public GroupSessionMgr getGroupSession(String groupID) throws WSRPException(Code) | | Get the group session for this group ID
Parameters: groupID - ID of the portlet application The a group session for the provided group ID or a new groupSession |
getProducerID | public String getProducerID()(Code) | | Get ID of the producer this session is bind to
ID of the producer |
getUserID | public String getUserID()(Code) | | Get ID of the user this session is bind to
User ID |
removeAllGroupSessions | public void removeAllGroupSessions()(Code) | | Remove all group sessions
|
removeGroupSession | public void removeGroupSession(String groupID)(Code) | | Remove a group session from the user session
Parameters: groupID - ID of the portlet application |
setProducerID | public void setProducerID(String producerID)(Code) | | Set the ID of the producer this session is bind to.
Parameters: producerID - of the producer |
setUserID | public void setUserID(String userID)(Code) | | Set the ID of the user this session is bind to
Parameters: userID - ID of the user |
|
|
|