| java.lang.Object com.rift.coad.lib.bean.ProxyCacheEntry
ProxyCacheEntry | public class ProxyCacheEntry implements CacheEntry(Code) | | This object is responsible for implementing the cache entry.
author: Brett Chaldecott |
Method Summary | |
public void | cacheRelease() This method is called by the cache when an object is removed. | public CacheEntry | getCacheEntry() | public boolean | isExpired(Date expiryDate) This method will return true if the date is older than the given expiry
date. | public void | touch() |
ProxyCacheEntry | public ProxyCacheEntry(long timeout, Object proxy, CacheEntry cacheEntry)(Code) | | The constructor of the proxy cache object.
Parameters: timeout - The timeout for this proxy object. Parameters: proxy - The proxy interface for the object. Parameters: cacheEntry - The cache entry being handled. |
cacheRelease | public void cacheRelease()(Code) | | This method is called by the cache when an object is removed.
|
getCacheEntry | public CacheEntry getCacheEntry()(Code) | | This method returns the handler stored with
|
isExpired | public boolean isExpired(Date expiryDate)(Code) | | This method will return true if the date is older than the given expiry
date.
TRUE if expired FALSE if not. Parameters: expiryDate - The expiry date to perform the check with. |
touch | public void touch()(Code) | | The touch method
|
|
|