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.  
com.opensymphony.oscache.plugins.diskpersistence Provides support for persisting cached objects to disk.  
 

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

Methods in com.opensymphony.oscache.base.persistence that throw CachePersistenceException
 boolean PersistenceListener.isStored(String key)
          Verify if an object is currently stored in the persistent cache.
 boolean PersistenceListener.isGroupStored(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(String key)
          Removes an object from the persistent cache
 void PersistenceListener.removeGroup(String groupName)
          Removes a group from the persistent cache.
 Object PersistenceListener.retrieve(String key)
          Retrieves an object from the persistent cache.
 void PersistenceListener.store(String key, Object obj)
          Stores an object in the persistent cache.
 void PersistenceListener.storeGroup(String groupName, Set group)
          Stores a group in the persistent cache.
 Set PersistenceListener.retrieveGroup(String groupName)
          Retrieves a group from the persistent cache.
 

Uses of CachePersistenceException in com.opensymphony.oscache.plugins.diskpersistence
 

Methods in com.opensymphony.oscache.plugins.diskpersistence that throw CachePersistenceException
 boolean AbstractDiskPersistenceListener.isGroupStored(String group)
          Verify if a group exists in the cache
 boolean AbstractDiskPersistenceListener.isStored(String key)
          Verify if an object is currently stored in the cache
 void AbstractDiskPersistenceListener.clear()
          Clears the whole cache directory, starting from the root
 void AbstractDiskPersistenceListener.remove(String key)
          Delete a single cache entry.
 void AbstractDiskPersistenceListener.removeGroup(String groupName)
          Deletes an entire group from the cache.
 Object AbstractDiskPersistenceListener.retrieve(String key)
          Retrieve an object from the disk
 Set AbstractDiskPersistenceListener.retrieveGroup(String groupName)
          Retrieves a group from the cache, or null if the group file could not be found.
 void AbstractDiskPersistenceListener.store(String key, Object obj)
          Stores an object in cache
 void AbstractDiskPersistenceListener.storeGroup(String groupName, Set group)
          Stores a group in the persistent cache.
protected  void AbstractDiskPersistenceListener.remove(File file)
           
protected  void AbstractDiskPersistenceListener.store(File file, Object obj)
          Stores an object using the supplied file object
 


OSCache Project Page