Java Doc for WebManSession.java in  » Content-Management-System » webman » de » webman » template » jsp » 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 » webman » de.webman.template.jsp 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   de.webman.template.jsp.WebManSession

WebManSession
final class WebManSession implements HttpSession,Serializable(Code)
Standard implementation of the Session interface. This object is serializable, so that it can be stored in persistent storage or transferred to a different JVM for distributable session support.
author:
   $Author: alex $
version:
   $Revision: 1.3 $



Constructor Summary
 WebManSession(ServletContext _context)
     Construct a new Session associated with the specified Manager.

Method Summary
public  voidaccess()
     Update the accessed time information for this session.
public  voidexpire()
     Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.
public  ObjectgetAttribute(String name)
     Return the object bound with the specified name in this session, or null if no object is bound with that name.
public  EnumerationgetAttributeNames()
     Return an Enumeration of String objects containing the names of the objects bound to this session.
public  longgetCreationTime()
     Return the time when this session was created, in milliseconds since midnight, January 1, 1970 GMT.
public  StringgetId()
     Return the session identifier for this session.
public  StringgetInfo()
     Return descriptive information about this Session implementation and the corresponding version number, in the format <description>/<version>.
public  longgetLastAccessedTime()
     Return the last time the client sent a request associated with this session, as the number of milliseconds since midnight, January 1, 1970 GMT.
public  intgetMaxInactiveInterval()
     Return the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session.
public  ServletContextgetServletContext()
    
public  HttpSessiongetSession()
     Return the HttpSession for which this object is the facade.
public  HttpSessionContextgetSessionContext()
     Return the session context with which this session is associated.
public  ObjectgetValue(String name)
     Return the object bound with the specified name in this session, or null if no object is bound with that name.
public  String[]getValueNames()
     Return the set of names of objects bound to this session.
public  voidinvalidate()
     Invalidates this session and unbinds any objects bound to it.
public  booleanisNew()
     Return true if the client does not yet know about the session, or if the client chooses not to join the session.
 booleanisValid()
     Return the isValid flag for this session.
public  voidputValue(String name, Object value)
     Bind an object to this session, using the specified name.
public  voidrecycle()
     Release all object references, and initialize instance variables, in preparation for reuse of this object.
public  voidremoveAttribute(String name)
     Remove the object bound with the specified name from this session.
public  voidremoveValue(String name)
     Remove the object bound with the specified name from this session.
public  voidsetAttribute(String name, Object value)
     Bind an object to this session, using the specified name.
public  voidsetCreationTime(long time)
     Set the creation time for this session.
public  voidsetId(String id)
     Set the session identifier for this session.
public  voidsetMaxInactiveInterval(int interval)
     Set the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session.
 voidsetNew(boolean isNew)
     Set the isNew flag for this session.
 voidsetValid(boolean isValid)
     Set the isValid flag for this session.


Constructor Detail
WebManSession
WebManSession(ServletContext _context)(Code)
Construct a new Session associated with the specified Manager.
Parameters:
  manager - The manager with which this Session is associated




Method Detail
access
public void access()(Code)
Update the accessed time information for this session. This method should be called by the context when a request comes in for a particular session, even if the application does not reference it.



expire
public void expire()(Code)
Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.



getAttribute
public Object getAttribute(String name)(Code)
Return the object bound with the specified name in this session, or null if no object is bound with that name.
Parameters:
  name - Name of the attribute to be returned
exception:
  IllegalStateException - if this method is called on aninvalidated session



getAttributeNames
public Enumeration getAttributeNames()(Code)
Return an Enumeration of String objects containing the names of the objects bound to this session.
exception:
  IllegalStateException - if this method is called on aninvalidated session



getCreationTime
public long getCreationTime()(Code)
Return the time when this session was created, in milliseconds since midnight, January 1, 1970 GMT.
exception:
  IllegalStateException - if this method is called on aninvalidated session



getId
public String getId()(Code)
Return the session identifier for this session.



getInfo
public String getInfo()(Code)
Return descriptive information about this Session implementation and the corresponding version number, in the format <description>/<version>.



getLastAccessedTime
public long getLastAccessedTime()(Code)
Return 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.



getMaxInactiveInterval
public int getMaxInactiveInterval()(Code)
Return the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session. A negative time indicates that the session should never time out.
exception:
  IllegalStateException - if this method is called onan invalidated session



getServletContext
public ServletContext getServletContext()(Code)
2.3



getSession
public HttpSession getSession()(Code)
Return the HttpSession for which this object is the facade.



getSessionContext
public HttpSessionContext getSessionContext()(Code)
Return the session context with which this session is associated.



getValue
public Object getValue(String name)(Code)
Return the object bound with the specified name in this session, or null if no object is bound with that name.
Parameters:
  name - Name of the value to be returned
exception:
  IllegalStateException - if this method is called on aninvalidated session



getValueNames
public String[] getValueNames()(Code)
Return the set of names of objects bound to this session. If there are no such objects, a zero-length array is returned.
exception:
  IllegalStateException - if this method is called on aninvalidated session



invalidate
public void invalidate()(Code)
Invalidates this session and unbinds any objects bound to it.
exception:
  IllegalStateException - if this method is called onan invalidated session



isNew
public boolean isNew()(Code)
Return 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 has disabled the use of cookies, then a session would be new on each request.
exception:
  IllegalStateException - if this method is called on aninvalidated session



isValid
boolean isValid()(Code)
Return the isValid flag for this session.



putValue
public void putValue(String name, Object value)(Code)
Bind an object to this session, using the specified name. If an object of the same name is already bound to this session, the object is replaced.

After this method executes, and if the object implements HttpSessionBindingListener, the container calls valueBound() on the object.
Parameters:
  name - Name to which the object is bound, cannot be null
Parameters:
  value - Object to be bound, cannot be null
exception:
  IllegalStateException - if this method is called on aninvalidated session




recycle
public void recycle()(Code)
Release all object references, and initialize instance variables, in preparation for reuse of this object.



removeAttribute
public void removeAttribute(String name)(Code)
Remove the object bound with the specified name from this session. If the session does not have an object bound with this name, this method does nothing.

After this method executes, and if the object implements HttpSessionBindingListener, the container calls valueUnbound() on the object.
Parameters:
  name - Name of the object to remove from this session.
exception:
  IllegalStateException - if this method is called on aninvalidated session




removeValue
public void removeValue(String name)(Code)
Remove the object bound with the specified name from this session. If the session does not have an object bound with this name, this method does nothing.

After this method executes, and if the object implements HttpSessionBindingListener, the container calls valueUnbound() on the object.
Parameters:
  name - Name of the object to remove from this session.
exception:
  IllegalStateException - if this method is called on aninvalidated session




setAttribute
public void setAttribute(String name, Object value)(Code)
Bind an object to this session, using the specified name. If an object of the same name is already bound to this session, the object is replaced.

After this method executes, and if the object implements HttpSessionBindingListener, the container calls valueBound() on the object.
Parameters:
  name - Name to which the object is bound, cannot be null
Parameters:
  value - Object to be bound, cannot be null
exception:
  IllegalArgumentException - if an attempt is made to add anon-serializable object in an environment marked distributable.
exception:
  IllegalStateException - if this method is called on aninvalidated session




setCreationTime
public void setCreationTime(long time)(Code)
Set the creation time for this session. This method is called by the Manager when an existing Session instance is reused.
Parameters:
  time - The new creation time



setId
public void setId(String id)(Code)
Set the session identifier for this session.
Parameters:
  id - The new session identifier



setMaxInactiveInterval
public void setMaxInactiveInterval(int interval)(Code)
Set the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session. A negative time indicates that the session should never time out.
Parameters:
  interval - The new maximum interval



setNew
void setNew(boolean isNew)(Code)
Set the isNew flag for this session.
Parameters:
  isNew - The new value for the isNew flag



setValid
void setValid(boolean isValid)(Code)
Set the isValid flag for this session.
Parameters:
  isValid - The new value for the isValid flag



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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