Java Doc for Session.java in  » Content-Management-System » apache-lenya-2.0 » org » apache » cocoon » environment » 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 » Content Management System » apache lenya 2.0 » org.apache.cocoon.environment 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.cocoon.environment.Session

All known Subclasses:   org.apache.cocoon.environment.mock.MockSession,  org.apache.cocoon.environment.http.HttpSession,  org.apache.cocoon.environment.portlet.PortletSession,  org.apache.cocoon.environment.commandline.CommandLineSession,
Session
public interface Session (Code)
Provides a way to identify a user across more than one page request or visit to a Web site and to store information about that user.

Cocoon uses this interface to create a session between a client and the "cocoon server". The session persists for a specified time period, across more than one connection or page request from the user. A session usually corresponds to one user, who may visit a site many times. The server can maintain a session in many ways such as using cookies or rewriting URLs.

This interface allows Cocoon to

  • View and manipulate information about a session, such as the session identifier, creation time, and last accessed time
  • Bind objects to sessions, allowing user information to persist across multiple user connections

Session information is scoped only to the current context (Context), so information stored in one context will not be directly visible in another.
author:
   Carsten Ziegeler
version:
   CVS $Id: Session.java 433543 2006-08-22 06:22:54Z crossley $





Method Summary
 ObjectgetAttribute(String name)
     Returns the object bound with the specified name in this session, or null if no object is bound under the name.
 EnumerationgetAttributeNames()
     Returns an Enumeration of String objects containing the names of all the objects bound to this session.
 longgetCreationTime()
     Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT.
 StringgetId()
     Returns a string containing the unique identifier assigned to this session.
 longgetLastAccessedTime()
     Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight January 1, 1970 GMT.
 intgetMaxInactiveInterval()
     Returns the maximum time interval, in seconds, that the context container will keep this session open between client accesses.
 voidinvalidate()
     Invalidates this session to it.
 booleanisNew()
     Returns true if the client does not yet know about the session or if the client chooses not to join the session.
 voidremoveAttribute(String name)
     Removes the object bound with the specified name from this session.
 voidsetAttribute(String name, Object value)
     Binds an object to this session, using the name specified.
 voidsetMaxInactiveInterval(int interval)
     Specifies the time, in seconds, between client requests before the contextcontainer will invalidate this session.



Method Detail
getAttribute
Object getAttribute(String name)(Code)
Returns the object bound with the specified name in this session, or null if no object is bound under the name.
Parameters:
  name - a string specifying the name of the object the object with the specified name
exception:
  IllegalStateException - if this method is called on aninvalidated session



getAttributeNames
Enumeration getAttributeNames()(Code)
Returns an Enumeration of String objects containing the names of all the objects bound to this session. an Enumeration ofString objects specifying thenames of all the objects bound tothis session
exception:
  IllegalStateException - if this method is called on aninvalidated session



getCreationTime
long getCreationTime()(Code)
Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT. a long specifyingwhen this session was created,expressed inmilliseconds since 1/1/1970 GMT
exception:
  IllegalStateException - if this method is called on aninvalidated session



getId
String getId()(Code)
Returns a string containing the unique identifier assigned to this session. The identifier is assigned by the context container and is implementation dependent. a string specifying the identifierassigned to this session
exception:
  IllegalStateException - if this method is called on aninvalidated session



getLastAccessedTime
long getLastAccessedTime()(Code)
Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight January 1, 1970 GMT.

Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time. a longrepresenting the last timethe client sent a request associatedwith this session, expressed inmilliseconds since 1/1/1970 GMT
exception:
  IllegalStateException - if this method is called on aninvalidated session




getMaxInactiveInterval
int getMaxInactiveInterval()(Code)
Returns the maximum time interval, in seconds, that the context container will keep this session open between client accesses. After this interval, the context container will invalidate the session. The maximum time interval can be set with the setMaxInactiveInterval method. A negative time indicates the session should never timeout. an integer specifying the number ofseconds this session remains openbetween client requests
See Also:   Session.setMaxInactiveInterval(int)



invalidate
void invalidate()(Code)
Invalidates this session to it.
exception:
  IllegalStateException - if this method is called on analready invalidated session



isNew
boolean isNew()(Code)
Returns true if the client does not yet know about the session or if the client chooses not to join the session. For example, if the server used only cookie-based sessions, and the client had disabled the use of cookies, then a session would be new on each request. true if theserver has created a session,but the client has not yet joined
exception:
  IllegalStateException - if this method is called on analready invalidated session



removeAttribute
void removeAttribute(String name)(Code)
Removes the object bound with the specified name from this session. If the session does not have an object bound with the specified name, this method does nothing.
Parameters:
  name - the name of the object toremove from this session
exception:
  IllegalStateException - if this method is called on aninvalidated session



setAttribute
void setAttribute(String name, Object value)(Code)
Binds an object to this session, using the name specified. If an object of the same name is already bound to the session, the object is replaced.
Parameters:
  name - the name to which the object is bound;cannot be null
Parameters:
  value - the object to be bound; cannot be null
exception:
  IllegalStateException - if this method is called on aninvalidated session



setMaxInactiveInterval
void setMaxInactiveInterval(int interval)(Code)
Specifies the time, in seconds, between client requests before the contextcontainer will invalidate this session. A negative time indicates the session should never timeout.
Parameters:
  interval - An integer specifying the numberof seconds



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