Java Doc for StandardSessionHome.java in  » J2EE » Enhydra-Application-Framework » com » lutris » appserver » server » sessionEnhydra » 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 » J2EE » Enhydra Application Framework » com.lutris.appserver.server.sessionEnhydra 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.lutris.appserver.server.sessionEnhydra.StandardSessionHome

All known Subclasses:   com.lutris.appserver.server.sessionEnhydra.PagedSessionHome,  com.lutris.appserver.server.sessionEnhydra.BasicSessionHome,
StandardSessionHome
public interface StandardSessionHome (Code)
StandardSessionManager uses StandardSessionHome to manage a collection of sessions. StandardSessionHome acts both as a session factory and as a session repository. The session manager gains access to instances of sessions via the home (StandardSessionHome) interface. The session manager dynamically loads the home interface. The implementation of the home interface that is loaded is specified in the applications configuration file:
  • SessionHome.Class: {class name}

StandardSessionHome manages the state of a session. A session exists in either of two states: 'active' or 'passive'. An 'active' session is one that is actively being referenced by a thread of execution (request). A 'passive' session is one that is not currently associated with any request (thread). A session in the 'passive' state may be written to persistent store until it becomes 'active'. When a session becomes active, if it isn't in memory then it can be read from persistent store.


See Also:   StandardSession
See Also:   StandardSessionManager
See Also:   BasicSessionHome
See Also:   PagedSessionHome
See Also:   com.lutris.appserver.server.sessionEnhydra.persistent.PersistentSessionHome
version:
   $Revision: 1.2 $
author:
   Kyle Clark





Method Summary
public  booleancontainsKey(String sessionKey)
     Specifies if a key is currently bound to a session.
public  StandardSessioncreateSession(String sessionKey)
     Creates and returns a new session instance.
public  StandardSessiongetSession(String sessionKey)
     Returns the session bound to the session key. The session must already be in the 'active' state and associated with the current thread, otherwise null is returned.
Parameters:
  sessionKey - the session key for the session.
public  StandardSessiongetSession(Thread thread, String sessionKey)
     Returns the session bound to the specified session key.
public  Enumerationkeys()
     Returns an enumeration of the keys for all the sessions.
public  intpagedSize()
     Returns the current number of sessions that are paged to persistent store.
public  voidpassivateSession(Thread thread, String sessionKey)
     Puts a session into the 'passive' state.
public  voidremoveSession(String sessionKey)
     Removes a session from the cache.
public  voidshutdown()
     Shuts dows the session home.
public  intsize()
     Returns the current number of sessions.



Method Detail
containsKey
public boolean containsKey(String sessionKey) throws SessionException(Code)
Specifies if a key is currently bound to a session.
Parameters:
  sessionKey - the session key to be tested.true if the session key is in use.
exception:
  SessionException - if the existence of the key cannot be determined.



createSession
public StandardSession createSession(String sessionKey) throws CreateSessionException, DuplicateKeyException, SessionException(Code)
Creates and returns a new session instance. The session is bound to the specified session key. The session is also associated with the current thread and is considered in the 'active' state. The session remains in the 'active' state until the thread puts the session into the 'passive' state.. Only this thread will be able to put the session into the 'passive' state.
Parameters:
  sessionKey - the key to associate with the session. the newly created session.
exception:
  CreateSessionException - if the session cannot becreated.
exception:
  DuplicateKeyException - if the session cannotbe created because the key is already in use.
exception:
  SessionException - if the session cannotbe created for some other reason.
See Also:   StandardSessionHome.passivateSession



getSession
public StandardSession getSession(String sessionKey) throws SessionException(Code)
Returns the session bound to the session key. The session must already be in the 'active' state and associated with the current thread, otherwise null is returned.
Parameters:
  sessionKey - the session key for the session. If the sessiondoesn't exist or is not is not bound to the currentthread then null is returned.the session.
exception:
  SessionException - if the session cannot be retrieved.
See Also:   StandardSessionHome.getSession(Thread,String)



getSession
public StandardSession getSession(Thread thread, String sessionKey) throws SessionException(Code)
Returns the session bound to the specified session key. The session is put into the 'active' state. The session is also associated with the specified thread. Only this thread will be able to put the session back into the 'passive' state once it is done with the session.
Parameters:
  thread - the thread that should be associated withthe session while it is in the active state. Only thisthread can put the session back into the passive state.
Parameters:
  sessionKey - the session key for the session that will be made'active' and returned. If the session doesn't existthen null is returned.the session.
exception:
  SessionException - if the session cannot be retrieved.
See Also:   StandardSessionHome.passivateSession



keys
public Enumeration keys() throws SessionException(Code)
Returns an enumeration of the keys for all the sessions. the enumeration of session keys.
exception:
  SessionException - if the session enumeration cannot be retrieved.



pagedSize
public int pagedSize() throws SessionException(Code)
Returns the current number of sessions that are paged to persistent store. the 'paged' session count.
exception:
  SessionException - if the size cannot be determined



passivateSession
public void passivateSession(Thread thread, String sessionKey) throws SessionException(Code)
Puts a session into the 'passive' state. A 'passive' session may be made persistent. Only the thread that put the session into the 'active' state may put the session into the 'passive' state.
Parameters:
  thread - the thread that is currently associatedwith the session.
Parameters:
  sessionKey - the session key for the session that will be made passive.
exception:
  SessionException - if the session cannot be retrieved.



removeSession
public void removeSession(String sessionKey) throws SessionException(Code)
Removes a session from the cache. If the session doesn't exist the opration is ignored.
Parameters:
  sessionKey - the session key associated with the session.
exception:
  SessionException - if the session cannot be retrieved.



shutdown
public void shutdown()(Code)
Shuts dows the session home.



size
public int size() throws SessionException(Code)
Returns the current number of sessions. the 'active' session count.
exception:
  SessionException - if the size cannot be determined



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