| java.lang.Object abook.data.Session
Session | public class Session (Code) | | Provides object of type Session mapping the data stored in the sql database
|
Session | public Session(String sessionId)(Code) | | Constructs a new Session object
Parameters: sessionId - The session identifier |
Session | public Session(User owner, String sessionId)(Code) | | Constructs a new Author object
Parameters: owner - The session owner Parameters: sessionId - The session identifier |
getOwner | public User getOwner()(Code) | | Returns the owner login. |
getSessionId | public String getSessionId()(Code) | | Returns the sessionId. |
setOwner | public void setOwner(User owner)(Code) | | Parameters: owner - The owner login to set. |
setSessionId | public void setSessionId(String sessionId)(Code) | | Parameters: sessionId - The sessionId to set. |
|
|