Java Doc for Store.java in  » Sevlet-Container » tomcat-catalina » org » apache » catalina » 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 » Sevlet Container » tomcat catalina » org.apache.catalina 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.catalina.Store

All known Subclasses:   org.apache.catalina.session.StoreBase,  org.apache.catalina.session.JDBCStore,  org.apache.catalina.session.FileStore,
Store
public interface Store (Code)
A Store is the abstraction of a Catalina component that provides persistent storage and loading of Sessions and their associated user data. Implementations are free to save and load the Sessions to any media they wish, but it is assumed that saved Sessions are persistent across server or context restarts.
author:
   Craig R. McClanahan
version:
   $Revision: 1.2 $ $Date: 2004/02/27 14:58:39 $




Method Summary
public  voidaddPropertyChangeListener(PropertyChangeListener listener)
     Add a property change listener to this component.
public  voidclear()
     Remove all Sessions from this Store.
public  StringgetInfo()
     Return descriptive information about this Store implementation and the corresponding version number, in the format <description>/<version>.
public  ManagergetManager()
     Return the Manager instance associated with this Store.
public  intgetSize()
     Return the number of Sessions present in this Store.
public  String[]keys()
     Return an array containing the session identifiers of all Sessions currently saved in this Store.
public  Sessionload(String id)
     Load and return the Session associated with the specified session identifier from this Store, without removing it.
public  voidremove(String id)
     Remove the Session with the specified session identifier from this Store, if present.
public  voidremovePropertyChangeListener(PropertyChangeListener listener)
     Remove a property change listener from this component.
public  voidsave(Session session)
     Save the specified Session into this Store.
public  voidsetManager(Manager manager)
     Set the Manager associated with this Store.



Method Detail
addPropertyChangeListener
public void addPropertyChangeListener(PropertyChangeListener listener)(Code)
Add a property change listener to this component.
Parameters:
  listener - The listener to add



clear
public void clear() throws IOException(Code)
Remove all Sessions from this Store.



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



getManager
public Manager getManager()(Code)
Return the Manager instance associated with this Store.



getSize
public int getSize() throws IOException(Code)
Return the number of Sessions present in this Store.
exception:
  IOException - if an input/output error occurs



keys
public String[] keys() throws IOException(Code)
Return an array containing the session identifiers of all Sessions currently saved in this Store. If there are no such Sessions, a zero-length array is returned.
exception:
  IOException - if an input/output error occurred



load
public Session load(String id) throws ClassNotFoundException, IOException(Code)
Load and return the Session associated with the specified session identifier from this Store, without removing it. If there is no such stored Session, return null.
Parameters:
  id - Session identifier of the session to load
exception:
  ClassNotFoundException - if a deserialization error occurs
exception:
  IOException - if an input/output error occurs



remove
public void remove(String id) throws IOException(Code)
Remove the Session with the specified session identifier from this Store, if present. If no such Session is present, this method takes no action.
Parameters:
  id - Session identifier of the Session to be removed
exception:
  IOException - if an input/output error occurs



removePropertyChangeListener
public void removePropertyChangeListener(PropertyChangeListener listener)(Code)
Remove a property change listener from this component.
Parameters:
  listener - The listener to remove



save
public void save(Session session) throws IOException(Code)
Save the specified Session into this Store. Any previously saved information for the associated session identifier is replaced.
Parameters:
  session - Session to be saved
exception:
  IOException - if an input/output error occurs



setManager
public void setManager(Manager manager)(Code)
Set the Manager associated with this Store.
Parameters:
  manager - The Manager which will use this Store.



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