Open SiteSearch 4.1.1
Final

ORG.oclc.ops
Interface SessionInfo

All Known Implementing Classes:
SessionIdHandler, SessionIdHandler

public abstract interface SessionInfo

The SessionInfo interface defines the methods required to get session-related information about the request being processed.


Method Summary
 String getSessionId(Object requestObject, Object activeUsers)
          Retrieves a String containing a Session Identifier.
 boolean isNewSession(Object requestObject)
          Determines if this is a new session.
 

Method Detail

isNewSession

public boolean isNewSession(Object requestObject)
Determines if this is a new session.
Parameters:
requestObject - information about the request
Returns:
boolean true if session is new; false if not

getSessionId

public String getSessionId(Object requestObject,
                           Object activeUsers)
Retrieves a String containing a Session Identifier.
Parameters:
requestObject - information about the request
Returns:
String representing the session id

Open SiteSearch 4.1.1
Final