Method Summary |
|
public Object | clone() This method returns a clone of the original user object. |
public synchronized long | getExpiryTime() The getter for the expiry time value. |
public String | getName() The getter method for the name of this role. |
public Set | getPrincipals() This method returns the list of principals. |
public String | getSessionId() This method returns the id of the users session id. |
public synchronized Date | getTouchTime() This method returns the touch time of the user session. |
public synchronized void | invalidate() This method will mark this session as invalid. |
public synchronized boolean | isExpired() This method returns true if this object has expired in memory. |
public synchronized void | setExpiryTime(long expiryTime) The setter for the expiry time value. |
public void | setPrincipals(Set principals) This method set the list of principals. |
public void | setSessionId(String sessionId) This method returns the id of the users session id. |
public synchronized void | touch() This method results in the users session being touched. |