| |
|
| java.lang.Object discRack.presentation.DiscRackSessionData
DiscRackSessionData | public class DiscRackSessionData implements java.io.Serializable(Code) | | Object that will be held in session data. This should
be the only object held there. Methods should be called
on this object to set and get data.
|
SESSION_KEY | final public static String SESSION_KEY(Code) | | Hash key to save session data for the DiscRack app in the Session
|
getAndClearUserMessage | public String getAndClearUserMessage()(Code) | | Retrieve the most recent user message and then clear it so no
other app tries to use it.
|
getUser | public Person getUser()(Code) | | Gets the person object
person |
removeUser | public void removeUser()(Code) | | Method to remove the current user from the session
|
setUser | public void setUser(Person thePerson)(Code) | | Sets the person object
Parameters: thePerson - the person object |
setUserMessage | public void setUserMessage(String msg)(Code) | | Sets the message
Parameters: msg - the message to be set |
|
|
|