Java Doc for UsageSessionService.java in  » ERP-CRM-Financial » sakai » org » sakaiproject » event » api » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ERP CRM Financial » sakai » org.sakaiproject.event.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.sakaiproject.event.api.UsageSessionService

All known Subclasses:   org.sakaiproject.event.impl.UsageSessionServiceAdaptor,
UsageSessionService
public interface UsageSessionService (Code)

UsageSessionService keeps track of usage sessions.



Field Summary
final public static  StringEVENT_LOGIN
     Name for the event of logging in.
final public static  StringEVENT_LOGOUT
     Name for the event of logging out.
final public static  StringSAKAI_SESSION_COOKIE
    
final public static  StringUSAGE_SESSION_KEY
     Name for the session key to retrieve the UsageSession.


Method Summary
 ListgetOpenSessions()
     Access a list of all open sessions.
 MapgetOpenSessionsByServer()
     Access a list of all open sessions, grouped by server.
 UsageSessiongetSession()
     Access the usage session associated with the current request or thread.
 UsageSessiongetSession(String id)
     Access a usage session (may be other than the current one) by id.
Parameters:
  id - the Session id.
 StringgetSessionId()
     Access the session id from the usage session associated with the current request or thread, or null if no session.
 intgetSessionInactiveTimeout()
     Access the time (seconds) we will wait for any user generated request from a session before we consider the session inactive.
 intgetSessionLostTimeout()
     Access the time (seconds) we will wait for hearing anyting from a session before we consider the session lost.
 SessionStategetSessionState(String key)
     Access a SessionState object with the given key associated with the current usage session.
Parameters:
  key - The SessionState key.
 ListgetSessions(List ids)
     Access a List of usage sessions by List of ids.
Parameters:
  ids - the List (String) of Session ids.
 ListgetSessions(String joinTable, String joinAlias, String joinColumn, String joinCriteria, Object[] values)
     Access a List of usage sessions by *arbitrary criteria* for te session ids.
Parameters:
  joinTable - the table name to (inner) join to
Parameters:
  joinAlias - the alias used in the criteria string for the joinTable
Parameters:
  joinColumn - the column name of the joinTable that is to match the session id in the join ON clause
Parameters:
  joinCriteria - the criteria of the select (after the where)
Parameters:
  fields - Optional values to go with the criteria in an implementation specific way.
 booleanlogin(Authentication authn, HttpServletRequest req)
     Start a usage session and do any other book-keeping needed to login a user who has already been authenticated.
Parameters:
  authn - The user authentication.
Parameters:
  req - The servlet request.
 voidlogout()
     End a usage session and otherwise cleanup from a login.
 UsageSessionsetSessionActive(boolean auto)
     Indicate recent user activity on the current usage session - user initiated or auto.
 UsageSessionstartSession(String userId, String remoteAddress, String userAgent)
     Establish a usage session associated with the current request or thread.
Parameters:
  userId - The user id.
Parameters:
  remoteAddress - The IP address from the user is making a request.
Parameters:
  userAgent - The string describing the user's browser.

Field Detail
EVENT_LOGIN
final public static String EVENT_LOGIN(Code)
Name for the event of logging in.



EVENT_LOGOUT
final public static String EVENT_LOGOUT(Code)
Name for the event of logging out.



SAKAI_SESSION_COOKIE
final public static String SAKAI_SESSION_COOKIE(Code)
Name for the global cookie to store the session



USAGE_SESSION_KEY
final public static String USAGE_SESSION_KEY(Code)
Name for the session key to retrieve the UsageSession. Note: This must be a constant and not based on classname - it must stay the same regardless of the name of the implementing class.





Method Detail
getOpenSessions
List getOpenSessions()(Code)
Access a list of all open sessions. a List (UsageSession) of all open sessions, ordered by server, then by start (asc)



getOpenSessionsByServer
Map getOpenSessionsByServer()(Code)
Access a list of all open sessions, grouped by server. a Map (server id -> List (UsageSession)) of all open sessions, ordered by server, then by start (asc)



getSession
UsageSession getSession()(Code)
Access the usage session associated with the current request or thread. The UsageSession object holding the information about this session.



getSession
UsageSession getSession(String id)(Code)
Access a usage session (may be other than the current one) by id.
Parameters:
  id - the Session id. The UsageSession object for this id, or null if not defined.



getSessionId
String getSessionId()(Code)
Access the session id from the usage session associated with the current request or thread, or null if no session. The session id from the usage session associated with the current request or thread, or null if no session.



getSessionInactiveTimeout
int getSessionInactiveTimeout()(Code)
Access the time (seconds) we will wait for any user generated request from a session before we consider the session inactive. the time (seconds) used for session inactivity detection.



getSessionLostTimeout
int getSessionLostTimeout()(Code)
Access the time (seconds) we will wait for hearing anyting from a session before we consider the session lost. the time (seconds) used for lost session detection.



getSessionState
SessionState getSessionState(String key)(Code)
Access a SessionState object with the given key associated with the current usage session.
Parameters:
  key - The SessionState key. an SessionState object with the given key.



getSessions
List getSessions(List ids)(Code)
Access a List of usage sessions by List of ids.
Parameters:
  ids - the List (String) of Session ids. The List (UsageSession) of UsageSession object for these ids.



getSessions
List getSessions(String joinTable, String joinAlias, String joinColumn, String joinCriteria, Object[] values)(Code)
Access a List of usage sessions by *arbitrary criteria* for te session ids.
Parameters:
  joinTable - the table name to (inner) join to
Parameters:
  joinAlias - the alias used in the criteria string for the joinTable
Parameters:
  joinColumn - the column name of the joinTable that is to match the session id in the join ON clause
Parameters:
  joinCriteria - the criteria of the select (after the where)
Parameters:
  fields - Optional values to go with the criteria in an implementation specific way. The List (UsageSession) of UsageSession object for these ids.



login
boolean login(Authentication authn, HttpServletRequest req)(Code)
Start a usage session and do any other book-keeping needed to login a user who has already been authenticated.
Parameters:
  authn - The user authentication.
Parameters:
  req - The servlet request. true if all went well, false if not (may fail if the userId is not a valid User)



logout
void logout()(Code)
End a usage session and otherwise cleanup from a login.



setSessionActive
UsageSession setSessionActive(boolean auto)(Code)
Indicate recent user activity on the current usage session - user initiated or auto. Maintains the initiated activity timeout mechanism.
Parameters:
  auto - if true, activity from an automatic event, otherwise from a user initiated event. The current usage session (may be just closed).



startSession
UsageSession startSession(String userId, String remoteAddress, String userAgent)(Code)
Establish a usage session associated with the current request or thread.
Parameters:
  userId - The user id.
Parameters:
  remoteAddress - The IP address from the user is making a request.
Parameters:
  userAgent - The string describing the user's browser. The new UsageSession, or null if one could not be created.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.