| |
|
| java.lang.Object com.lutris.appserver.server.sessionEnhydra.SessionThread
SessionThread | public class SessionThread (Code) | | Represents a combination of a thread and a session key.
A session must be associated with a thread of execution
before a reference to the session can be obtained by the
application. This object represents the existing thread
to session association.
version: $Revision: 1.2 $ author: Kyle Clark |
Constructor Summary | |
public | SessionThread(Thread thread, String sessionKey) Creates an instance of a session-thread association. |
Method Summary | |
public boolean | equals(Object sessionThread) Compares equality of two objects. | public int | hashCode() Returns the hashcode for this object. | public String | toString() Returns string representation. |
SessionThread | public SessionThread(Thread thread, String sessionKey)(Code) | | Creates an instance of a session-thread association.
Parameters: thread - the thread to associate with a session. Parameters: sessionKey - the session key. |
equals | public boolean equals(Object sessionThread)(Code) | | Compares equality of two objects.
Parameters: sessionThread - the reference object with whichcompare. |
hashCode | public int hashCode()(Code) | | Returns the hashcode for this object.
|
toString | public String toString()(Code) | | Returns string representation.
|
|
|
|