Java Doc for PersistenceStore.java in  » Portal » jetspeed-2.1.3 » org » apache » jetspeed » components » persistence » store » 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 » Portal » jetspeed 2.1.3 » org.apache.jetspeed.components.persistence.store 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.jetspeed.components.persistence.store.PersistenceStore

PersistenceStore
public interface PersistenceStore (Code)

PersistenceStore

The persistence store allows access to the persistent storage mechanism within the application.
PersistenceStore instances ARE NOT thread safe. The best practices approach for using the persistence store is to use PersistenceStoreContainer.getStoreForThread() any time the store is to be accessed.


version:
   $ $


Field Summary
 intLOCK_NO_LOCK
     No lock at all aka the object is read only changes WILL NOT be persisted at checkPoints or commits.
 intLOCK_PESSIMISTIC
     changes to the object will be written to the database.
 intLOCK_READ
    


Method Summary
 voidaddEventListener(PersistenceStoreEventListener listener)
    
 voidclose()
    
 voiddeleteAll(Object query)
    
 voiddeletePersistent(Object obj)
    
 CollectiongetCollectionByQuery(Object query)
    
 CollectiongetCollectionByQuery(Object query, int lockLevel)
    
 intgetCount(Object query)
    
 CollectiongetExtent(Class clazz)
    
 CollectiongetExtent(Class clazz, int lockLevel)
    
 IteratorgetIteratorByQuery(Object query)
    
 IteratorgetIteratorByQuery(Object query, int lockLevel)
    
 ObjectgetObjectByIdentity(Object object)
    
 ObjectgetObjectByIdentity(Object object, int lockLevel)
    
 ObjectgetObjectByQuery(Object query)
    
 ObjectgetObjectByQuery(Object query, int lockLevel)
    
 TransactiongetTransaction()
    

getTransaction

Returns the current Transaction for thsis PersistenceStore instance.

 voidinvalidate(Object obj)
    
 voidinvalidateAll()
    
 voidinvalidateByQuery(Object query)
    
 voidinvalidateExtent(Class clazz)
    
 booleanisClosed()
    

isClosed

indicates whether or not this PersistenceStore instance has been closed.

 voidlockForWrite(Object obj)
    
 voidmakePersistent(Object obj)
    
 FilternewFilter()
    
 ObjectnewQuery(Class clazz, Filter filter)
    

Field Detail
LOCK_NO_LOCK
int LOCK_NO_LOCK(Code)
No lock at all aka the object is read only changes WILL NOT be persisted at checkPoints or commits.



LOCK_PESSIMISTIC
int LOCK_PESSIMISTIC(Code)
changes to the object will be written to the database.



LOCK_READ
int LOCK_READ(Code)
changes to the object will be written to the database, in this case the lock will be automatically upgraded to the write lock on transaction





Method Detail
addEventListener
void addEventListener(PersistenceStoreEventListener listener)(Code)



close
void close()(Code)



deleteAll
void deleteAll(Object query) throws LockFailedException(Code)



deletePersistent
void deletePersistent(Object obj) throws LockFailedException(Code)



getCollectionByQuery
Collection getCollectionByQuery(Object query)(Code)



getCollectionByQuery
Collection getCollectionByQuery(Object query, int lockLevel)(Code)



getCount
int getCount(Object query)(Code)



getExtent
Collection getExtent(Class clazz)(Code)



getExtent
Collection getExtent(Class clazz, int lockLevel)(Code)



getIteratorByQuery
Iterator getIteratorByQuery(Object query)(Code)



getIteratorByQuery
Iterator getIteratorByQuery(Object query, int lockLevel)(Code)



getObjectByIdentity
Object getObjectByIdentity(Object object) throws LockFailedException(Code)



getObjectByIdentity
Object getObjectByIdentity(Object object, int lockLevel) throws LockFailedException(Code)



getObjectByQuery
Object getObjectByQuery(Object query)(Code)



getObjectByQuery
Object getObjectByQuery(Object query, int lockLevel)(Code)



getTransaction
Transaction getTransaction()(Code)

getTransaction

Returns the current Transaction for thsis PersistenceStore instance. The transaction will always be the same for the lifetime of the PersistenceStore instance.

Transaction for this PersistenceStore



invalidate
void invalidate(Object obj) throws LockFailedException(Code)



invalidateAll
void invalidateAll() throws LockFailedException(Code)



invalidateByQuery
void invalidateByQuery(Object query) throws LockFailedException(Code)



invalidateExtent
void invalidateExtent(Class clazz) throws LockFailedException(Code)



isClosed
boolean isClosed()(Code)

isClosed

indicates whether or not this PersistenceStore instance has been closed. A closed store will generally throw exceptions when any operation is performed upon it.




lockForWrite
void lockForWrite(Object obj) throws LockFailedException(Code)



makePersistent
void makePersistent(Object obj) throws LockFailedException(Code)



newFilter
Filter newFilter()(Code)



newQuery
Object newQuery(Class clazz, Filter filter)(Code)



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