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


java.lang.Object
   org.directwebremoting.impl.DefaultScriptSessionManager

DefaultScriptSessionManager
public class DefaultScriptSessionManager implements ScriptSessionManager(Code)
A default implementation of ScriptSessionManager.

There are synchronization constraints on this class that could be broken by subclasses. Specifically anyone accessing either sessionMap or pageSessionMap must be holding the sessionLock.

In addition you should note that DefaultScriptSession and DefaultScriptSessionManager make calls to each other and you should take care not to break any constraints in inheriting from these classes.
author:
   Joe Walker [joe at getahead dot ltd dot uk]



Field Summary
final public static  StringATTRIBUTE_HTTPSESSIONID
     Use of this attribute is currently discouraged, we may make this public in a later release.
final public static  StringATTRIBUTE_PAGE
     Use of this attribute is currently discouraged, we may make this public in a later release.
final protected static  longDEFAULT_SESSION_CHECK_TIME
    
protected  longlastSessionCheckAt
     We check for sessions that need timing out every DefaultScriptSessionManager.scriptSessionCheckTime ; this is when we last checked.
protected  PageNormalizerpageNormalizer
     How we turn pages into the canonical form.
protected  longscriptSessionCheckTime
    
protected  EventListenerListscriptSessionListeners
    
final protected  ObjectsessionLock
    

Constructor Summary
public  DefaultScriptSessionManager()
    

Method Summary
public  voidaddScriptSessionListener(ScriptSessionListener li)
    
protected  voidassociateScriptSessionAndHttpSession(RealScriptSession scriptSession, String httpSessionId)
     Link a script session and an http session in some way Exactly what we should do here is still something of a mystery.
protected  voidassociateScriptSessionAndPage(RealScriptSession scriptSession, String page)
     Link a script session to a web page.
protected  voidcheckTimeouts()
     Do a check on all the known sessions to see if and have timeout and need removing.
public  RealScriptSessioncreateScriptSession(String page, String httpSessionId)
    
protected  voiddisassociateScriptSessionAndHttpSession(RealScriptSession scriptSession)
    
protected  voiddisassociateScriptSessionAndPage(RealScriptSession scriptSession)
    
protected  voidfireScriptSessionCreatedEvent(ScriptSession scriptSession)
    
protected  voidfireScriptSessionDestroyedEvent(ScriptSession scriptSession)
    
public  Collection<ScriptSession>getAllScriptSessions()
    
public  RealScriptSessiongetScriptSession(String id, String page, String httpSessionId)
    
public  longgetScriptSessionTimeout()
    
public  Collection<RealScriptSession>getScriptSessionsByHttpSessionId(String httpSessionId)
    
public  Collection<ScriptSession>getScriptSessionsByPage(String url)
    
protected  voidinvalidate(RealScriptSession scriptSession)
     Remove the given session from the list of sessions that we manage, and leave it for the GC vultures to pluck.
protected  voidmaybeCheckTimeouts()
     If we call DefaultScriptSessionManager.checkTimeouts() too often is could bog things down so we only check every one in a while (default 30 secs); this checks to see of we need to check, and checks if we do.
public  voidremoveScriptSessionListener(ScriptSessionListener li)
    
public  voidsetPageNormalizer(PageNormalizer pageNormalizer)
     Accessor for the PageNormalizer.
public  voidsetScriptSessionCheckTime(long scriptSessionCheckTime)
    
public  voidsetScriptSessionTimeout(long scriptSessionTimeout)
    

Field Detail
ATTRIBUTE_HTTPSESSIONID
final public static String ATTRIBUTE_HTTPSESSIONID(Code)
Use of this attribute is currently discouraged, we may make this public in a later release. Until then, it may change or be removed without warning.



ATTRIBUTE_PAGE
final public static String ATTRIBUTE_PAGE(Code)
Use of this attribute is currently discouraged, we may make this public in a later release. Until then, it may change or be removed without warning.



DEFAULT_SESSION_CHECK_TIME
final protected static long DEFAULT_SESSION_CHECK_TIME(Code)
By default we check for sessions that need expiring every 30 seconds



lastSessionCheckAt
protected long lastSessionCheckAt(Code)
We check for sessions that need timing out every DefaultScriptSessionManager.scriptSessionCheckTime ; this is when we last checked.



pageNormalizer
protected PageNormalizer pageNormalizer(Code)
How we turn pages into the canonical form.



scriptSessionCheckTime
protected long scriptSessionCheckTime(Code)
How often do we check for script sessions that need timing out



scriptSessionListeners
protected EventListenerList scriptSessionListeners(Code)
The list of current ScriptSessionListener s



sessionLock
final protected Object sessionLock(Code)
What we synchronize against when we want to access either sessionMap or pageSessionMap




Constructor Detail
DefaultScriptSessionManager
public DefaultScriptSessionManager()(Code)
Setup a timer that will invalidate sessions




Method Detail
addScriptSessionListener
public void addScriptSessionListener(ScriptSessionListener li)(Code)



associateScriptSessionAndHttpSession
protected void associateScriptSessionAndHttpSession(RealScriptSession scriptSession, String httpSessionId)(Code)
Link a script session and an http session in some way Exactly what we should do here is still something of a mystery. We don't really have much experience on the best way to handle this, so currently we're just setting a script session attribute that points at the http session id, and not exposing it.

This method is an ideal point to override and do something better.
Parameters:
  scriptSession - The script session to be linked to an http session
Parameters:
  httpSessionId - The http session from the browser with the given scriptSession




associateScriptSessionAndPage
protected void associateScriptSessionAndPage(RealScriptSession scriptSession, String page)(Code)
Link a script session to a web page.

This allows people to call ServerContext.getScriptSessionsByPage(String)

This method is an ideal point to override and do something better.
Parameters:
  scriptSession - The script session to be linked to a page
Parameters:
  page - The page (un-normalized) to be linked to




checkTimeouts
protected void checkTimeouts()(Code)
Do a check on all the known sessions to see if and have timeout and need removing.



createScriptSession
public RealScriptSession createScriptSession(String page, String httpSessionId)(Code)



disassociateScriptSessionAndHttpSession
protected void disassociateScriptSessionAndHttpSession(RealScriptSession scriptSession)(Code)
Unlink any http sessions from this script session
See Also:   DefaultScriptSessionManager.associateScriptSessionAndHttpSession(RealScriptSession,String)
Parameters:
  scriptSession - The script session to be unlinked



disassociateScriptSessionAndPage
protected void disassociateScriptSessionAndPage(RealScriptSession scriptSession)(Code)
Unlink any pages from this script session
See Also:   DefaultScriptSessionManager.associateScriptSessionAndPage(RealScriptSession,String)
Parameters:
  scriptSession - The script session to be unlinked



fireScriptSessionCreatedEvent
protected void fireScriptSessionCreatedEvent(ScriptSession scriptSession)(Code)
This should be called whenever a ScriptSession is created
Parameters:
  scriptSession - The newly created ScriptSession



fireScriptSessionDestroyedEvent
protected void fireScriptSessionDestroyedEvent(ScriptSession scriptSession)(Code)
This should be called whenever a ScriptSession is destroyed
Parameters:
  scriptSession - The newly destroyed ScriptSession



getAllScriptSessions
public Collection<ScriptSession> getAllScriptSessions()(Code)



getScriptSession
public RealScriptSession getScriptSession(String id, String page, String httpSessionId)(Code)



getScriptSessionTimeout
public long getScriptSessionTimeout()(Code)



getScriptSessionsByHttpSessionId
public Collection<RealScriptSession> getScriptSessionsByHttpSessionId(String httpSessionId)(Code)
Lookup all the windows associated with a given browser
Parameters:
  httpSessionId - The browser id to lookup A list of script sessions for each open window



getScriptSessionsByPage
public Collection<ScriptSession> getScriptSessionsByPage(String url)(Code)



invalidate
protected void invalidate(RealScriptSession scriptSession)(Code)
Remove the given session from the list of sessions that we manage, and leave it for the GC vultures to pluck.
Parameters:
  scriptSession - The session to get rid of



maybeCheckTimeouts
protected void maybeCheckTimeouts()(Code)
If we call DefaultScriptSessionManager.checkTimeouts() too often is could bog things down so we only check every one in a while (default 30 secs); this checks to see of we need to check, and checks if we do.



removeScriptSessionListener
public void removeScriptSessionListener(ScriptSessionListener li)(Code)



setPageNormalizer
public void setPageNormalizer(PageNormalizer pageNormalizer)(Code)
Accessor for the PageNormalizer.
Parameters:
  pageNormalizer - The new PageNormalizer



setScriptSessionCheckTime
public void setScriptSessionCheckTime(long scriptSessionCheckTime)(Code)

Parameters:
  scriptSessionCheckTime - the scriptSessionCheckTime to set



setScriptSessionTimeout
public void setScriptSessionTimeout(long scriptSessionTimeout)(Code)



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.