Java Doc for ScriptSession.java in  » Ajax » dwr » org » directwebremoting » 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 » Ajax » dwr » org.directwebremoting 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.directwebremoting.ScriptSession

ScriptSession
public interface ScriptSession (Code)
Script scope is like session scope except that it is managed using a Javascript variable. The operations on a Page are similar to (and derived from) the options on a Session, with some added simplification.
See Also:   javax.servlet.http.HttpSession
author:
   Joe Walker [joe at getahead dot ltd dot uk]




Method Summary
 voidaddScript(ScriptBuffer script)
     Add a script to the list waiting for remote execution.
 ObjectgetAttribute(String name)
     Returns the object bound with the specified name in this session, or null if no object is bound under the name.
 Iterator<String>getAttributeNames()
     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 1/1/1970 GMT, and marked by the time the container received the request.
 StringgetPage()
     What page is this script session attached to? The page does not include server information, but does include everything from the host/port onwards, including the query parameters depending on the configured org.directwebremoting.extend.PageNormalizer , which by default removes them.
 voidinvalidate()
     Invalidates this session then unbinds any objects bound to it.
 booleanisInvalidated()
     Checks to see if this ScriptSession has been invalidated.

There is no similar method on HttpSession because it is assumed that you do not store HttpSessions from one request to another, so all sessions that you have access to will always be either valid, or you have just invalidated it yourself so you wont need to ask.

 voidremoveAttribute(String name)
     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.

After this method executes, and if the object implements HttpSessionBindingListener, the container calls HttpSessionBindingListener.valueUnbound.

 voidsetAttribute(String name, Object value)
     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.

After this method executes, and if the new object implements HttpSessionBindingListener, the container calls HttpSessionBindingListener.valueBound.




Method Detail
addScript
void addScript(ScriptBuffer script)(Code)
Add a script to the list waiting for remote execution. The version automatically wraps the string in a ClientScript object.
Parameters:
  script - The script to execute



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
throws:
  IllegalStateException - if the page has been invalidated



getAttributeNames
Iterator<String> getAttributeNames()(Code)
Returns an Enumeration of String objects containing the names of all the objects bound to this session. an Iterator of Strings, specifying thenames of all the objects bound to this session
throws:
  IllegalStateException - if the page has been invalidated



getCreationTime
long getCreationTime()(Code)
Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT. when was this page created, in milliseconds since 1/1/1970 GMT
throws:
  IllegalStateException - if the page has been invalidated



getId
String getId()(Code)
Returns a string containing the unique identifier assigned to this session. The identifier is assigned by the servlet container and is implementation dependent. a string specifying the identifier assigned to this session
throws:
  IllegalStateException - if the page has been invalidated



getLastAccessedTime
long getLastAccessedTime()(Code)
Returns the last time the client sent a request associated with this session, as the number of milliseconds since 1/1/1970 GMT, and marked by the time the container received the request.

Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time. when was this page last accessed, in milliseconds since 1/1/1970 GMT
throws:
  IllegalStateException - if the page has been invalidated




getPage
String getPage()(Code)
What page is this script session attached to? The page does not include server information, but does include everything from the host/port onwards, including the query parameters depending on the configured org.directwebremoting.extend.PageNormalizer , which by default removes them. The page that this script session is viewing



invalidate
void invalidate()(Code)
Invalidates this session then unbinds any objects bound to it.
throws:
  IllegalStateException - if the page has been invalidated



isInvalidated
boolean isInvalidated()(Code)
Checks to see if this ScriptSession has been invalidated.

There is no similar method on HttpSession because it is assumed that you do not store HttpSessions from one request to another, so all sessions that you have access to will always be either valid, or you have just invalidated it yourself so you wont need to ask. This method makes up for the change that now ScriptSessions are accessible from outside the normal scope. true if the ScriptSession has been invalidated




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.

After this method executes, and if the object implements HttpSessionBindingListener, the container calls HttpSessionBindingListener.valueUnbound. The container then notifies any HttpSessionAttributeListeners in the web application.
Parameters:
  name - the name of the object to remove from this session
throws:
  IllegalStateException - if the page has been invalidated




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.

After this method executes, and if the new object implements HttpSessionBindingListener, the container calls HttpSessionBindingListener.valueBound. The container then notifies any HttpSessionAttributeListeners in the web application.

If an object was already bound to this session of this name that implements HttpSessionBindingListener, its HttpSessionBindingListener.valueUnbound method is called.

If the value passed in is null, this has the same effect as calling removeAttribute().
Parameters:
  name - the name to which the object is bound; cannot be null
Parameters:
  value - the object to be bound
throws:
  IllegalStateException - if the page has been invalidated




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