|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.turbine.services.cache.CachedObject
Wrapper for an object you want to store in a cache for a period of time.
Field Summary | |
private java.lang.Object |
contents
The object to be cached. |
protected long |
created
When created. |
static int |
DEFAULT
Cache the object with the Default TTL |
private long |
defaultage
Default age (30 minutes). |
private long |
expires
When it expires. |
static int |
FOREVER
Do not expire the object |
private boolean |
stale
Is this object stale/expired? |
Constructor Summary | |
CachedObject(java.lang.Object o)
Constructor; sets the object to expire in the default time (30 minutes). |
|
CachedObject(java.lang.Object o,
long expires)
Constructor. |
Method Summary | |
java.lang.Object |
getContents()
Returns the cached object. |
long |
getCreated()
Returns the creation time for the object. |
long |
getExpires()
Returns the expiration time for the object. |
boolean |
getStale()
Get the stale status for the object. |
boolean |
isStale()
Is the object stale? |
void |
setStale(boolean stale)
Set the stale status for the object. |
Methods inherited from class java.lang.Object |
|
Field Detail |
public static final int DEFAULT
public static final int FOREVER
private java.lang.Object contents
private long defaultage
protected long created
private long expires
private boolean stale
Constructor Detail |
public CachedObject(java.lang.Object o)
o
- The object you want to cache.public CachedObject(java.lang.Object o, long expires)
o
- The object to cache.expires
- How long before the object expires, in ms,
e.g. 1000 = 1 second.Method Detail |
public java.lang.Object getContents()
public long getCreated()
public long getExpires()
public void setStale(boolean stale)
stale
- Whether the object is stale or not.public boolean getStale()
public boolean isStale()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |