| org.sakaiproject.event.api.UsageSession
UsageSession | public interface UsageSession extends Comparable(Code) | |
UsageSession models an end user's usage session.
|
MAC_IE | final public static String MAC_IE(Code) | | String constants for major browser types
|
getBrowserId | String getBrowserId()(Code) | | Access a short string describing the class of browser used in this session.
the short ID describing the browser used in this session. |
getEnd | Time getEnd()(Code) | | Access the end time of the session.
The time the session ended. If still going, this will .equals() the getStart() value. |
getId | String getId()(Code) | | Access the unique id for this session.
the unique id for this session. |
getIpAddress | String getIpAddress()(Code) | | Access the IP Address from which this session originated.
the IP Address from which this session originated. |
getServer | String getServer()(Code) | | Access the server id which is hosting this session.
the server id which is hosting this session. |
getStart | Time getStart()(Code) | | Access the start time of the session
The time the session started. |
getUserAgent | String getUserAgent()(Code) | | Access the User Agent string describing the browser used in this session.
the User Agent string describing the browser used in this session. |
getUserDisplayId | String getUserDisplayId()(Code) | | Access the user display id for this session, if known - fallback to the id if not.
The user display id for this session, or the use id if the user cannot be found. |
getUserEid | String getUserEid()(Code) | | Access the user eid for this session, if known - fallback to the id if not.
The user eid for this session, or the use id if the eid cannot be found. |
getUserId | String getUserId()(Code) | | Access the user id for this session.
the user id for this session. |
isClosed | boolean isClosed()(Code) | | Is this session closed?
true if the session is closed, false if open. |
|
|