Uses of Class
org.apache.jcs.access.exception.CacheException

Packages that use CacheException
org.apache.jcs Contains the class JCS which provides a simple interface for clients to use JCS. 
org.apache.jcs.access Contains classes for accessing the cache. 
org.apache.jcs.access.behavior   
org.apache.jcs.access.exception   
org.apache.jcs.engine.control The primary cache classes and the hub. 
 

Uses of CacheException in org.apache.jcs
 

Methods in org.apache.jcs that throw CacheException
static JCS JCS.getInstance(java.lang.String region)
          Get a JCS which accesses the provided region.
static JCS JCS.getInstance(java.lang.String region, ICompositeCacheAttributes icca)
          Get a JCS which accesses the provided region.
 

Uses of CacheException in org.apache.jcs.access
 

Methods in org.apache.jcs.access that throw CacheException
static CacheAccess CacheAccess.defineRegion(java.lang.String name)
          Define a new cache region with the given name.
static CacheAccess CacheAccess.defineRegion(java.lang.String name, CompositeCacheAttributes cattr)
          Define a new cache region with the specified name and attributes.
static CacheAccess CacheAccess.defineRegion(java.lang.String name, CompositeCacheAttributes cattr, IElementAttributes attr)
          Define a new cache region with the specified name and attributes and return a CacheAccess to it.
static CacheAccess CacheAccess.getAccess(java.lang.String region)
          Get a CacheAccess instance for the given region.
static CacheAccess CacheAccess.getAccess(java.lang.String region, ICompositeCacheAttributes icca)
          Get a CacheAccess instance for the given region with the given attributes.
 void CacheAccess.putSafe(java.lang.Object key, java.lang.Object value)
          Place a new object in the cache, associated with key name.
 void CacheAccess.put(java.lang.Object name, java.lang.Object obj)
          Place a new object in the cache, associated with key name.
 void CacheAccess.put(java.lang.Object key, java.lang.Object val, IElementAttributes attr)
           
 void CacheAccess.destroy()
          Deprecated.  
 void CacheAccess.remove()
          Deprecated. use clear()
 void CacheAccess.clear()
          Removes all of the elements from a region.
 void CacheAccess.destroy(java.lang.Object name)
          Deprecated. use remove
 void CacheAccess.remove(java.lang.Object name)
          Removes a single item by name.
 void CacheAccess.resetElementAttributes(IElementAttributes attr)
          ResetAttributes allows for some of the attributes of a region to be reset in particular expiration time attriubtes, time to live, default time to live and idle time, and event handlers.
 void CacheAccess.resetElementAttributes(java.lang.Object name, IElementAttributes attr)
          Reset attributes for a particular element in the cache.
 IElementAttributes CacheAccess.getElementAttributes()
          GetElementAttributes will return an attribute object describing the current attributes associated with the object name.
 IElementAttributes CacheAccess.getElementAttributes(java.lang.Object name)
          GetElementAttributes will return an attribute object describing the current attributes associated with the object name.
static GroupCacheAccess GroupCacheAccess.getGroupAccess(java.lang.String region)
          Gets the groupAccess attribute of the GroupCacheAccess class.
static GroupCacheAccess GroupCacheAccess.getGroupAccess(java.lang.String region, ICompositeCacheAttributes icca)
          Gets the groupAccess attribute of the GroupCacheAccess class.
 void GroupCacheAccess.putInGroup(java.lang.Object name, java.lang.String groupName, java.lang.Object value)
          Allows the user to put an object into a group within a particular cache region.
 void GroupCacheAccess.putInGroup(java.lang.Object name, java.lang.String groupName, java.lang.Object value, IElementAttributes attr)
          Allows the user to put an object into a group within a particular cache region.
 

Uses of CacheException in org.apache.jcs.access.behavior
 

Methods in org.apache.jcs.access.behavior that throw CacheException
 void IGroupCacheAccess.putInGroup(java.lang.Object key, java.lang.String group, java.lang.Object obj)
          Puts an item int eh cache associated with this group.
 void IGroupCacheAccess.putInGroup(java.lang.Object key, java.lang.String group, java.lang.Object obj, IElementAttributes attr)
          Put in the cache associated with this group using these attributes.
 void ICacheAccess.putSafe(java.lang.Object name, java.lang.Object obj)
          Puts in cache if an item does not exist with the name in that region.
 void ICacheAccess.put(java.lang.Object name, java.lang.Object obj)
          Puts and/or overides an element with the name in that region.
 void ICacheAccess.put(java.lang.Object name, java.lang.Object obj, IElementAttributes attr)
          Description of the Method
 void ICacheAccess.destroy()
          Deprecated.  
 void ICacheAccess.remove()
          Old remove all method.
 void ICacheAccess.destroy(java.lang.Object name)
          Deprecated.  
 void ICacheAccess.remove(java.lang.Object name)
          Remove an object for this key if one exists, else do nothing.
 void ICacheAccess.resetElementAttributes(IElementAttributes attr)
          ResetAttributes allows for some of the attributes of a region to be reset in particular expiration time attriubtes, time to live, default time to live and idle time, and event handlers.
 void ICacheAccess.resetElementAttributes(java.lang.Object name, IElementAttributes attr)
          Reset the attributes on the object matching this key name.
 IElementAttributes ICacheAccess.getElementAttributes()
          GetElementAttributes will return an attribute object describing the current attributes associated with the object name.
 IElementAttributes ICacheAccess.getElementAttributes(java.lang.Object name)
          Gets the elementAttributes attribute of the ICacheAccess object
 

Uses of CacheException in org.apache.jcs.access.exception
 

Subclasses of CacheException in org.apache.jcs.access.exception
 class InvalidArgumentException
          Description of the Class
 class InvalidGroupException
          Description of the Class
 class InvalidHandleException
          Description of the Class
 class NotARetrievableObjectException
          Description of the Class
 class NullObjectException
          Description of the Class
 class ObjectExistsException
          I'm removing this exception from use.
 class ObjectNotFoundException
          Description of the Class
 

Uses of CacheException in org.apache.jcs.engine.control
 

Methods in org.apache.jcs.engine.control that throw CacheException
 IElementAttributes CompositeCache.getElementAttributes(java.io.Serializable key)
          Gets the elementAttributes attribute of the Cache object
 



Copyright © 2002-2005 Apache Software Foundation. All Rights Reserved.