Uses of Class
com.opensymphony.oscache.base.persistence.CachePersistenceException

Packages that use CachePersistenceException
com.opensymphony.oscache.base.persistence Provides the interfaces that provide persistence storage of cached objects. 
 

Uses of CachePersistenceException in com.opensymphony.oscache.base.persistence
 

Methods in com.opensymphony.oscache.base.persistence that throw CachePersistenceException
 boolean PersistenceListener.isStored(java.lang.String key)
          Verify if an object is currently stored in the persistent cache.
 boolean PersistenceListener.isGroupStored(java.lang.String groupName)
          Verify if a group is currently stored in the persistent cache.
 void PersistenceListener.clear()
          Clear the entire persistent cache (including the root)
 void PersistenceListener.remove(java.lang.String key)
          Removes an object from the persistent cache
 void PersistenceListener.removeGroup(java.lang.String groupName)
          Removes a group from the persistent cache.
 java.lang.Object PersistenceListener.retrieve(java.lang.String key)
          Retrieves an object from the persistent cache.
 void PersistenceListener.store(java.lang.String key, java.lang.Object obj)
          Stores an object in the persistent cache.
 void PersistenceListener.storeGroup(java.lang.String groupName, java.util.Set group)
          Stores a group in the persistent cache.
 java.util.Set PersistenceListener.retrieveGroup(java.lang.String groupName)
          Retrieves a group from the persistent cache.
 


See www.opensymphony.com for more information.