com.caucho.management.server
Class CacheItem

java.lang.Object
  extended by com.caucho.management.server.CacheItem
All Implemented Interfaces:
java.io.Serializable

public class CacheItem
extends java.lang.Object
implements java.io.Serializable

Cache entry

See Also:
Serialized Form

Constructor Summary
CacheItem()
           
 
Method Summary
 long getHitCount()
           
 long getMissCount()
           
 java.lang.String getUrl()
           
 boolean isCacheable()
           
 boolean isCached()
           
 void setCacheable(boolean isCacheable)
           
 void setCached(boolean isCached)
           
 void setHitCount(long hitCount)
           
 void setMissCount(long missCount)
           
 void setUrl(java.lang.String url)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CacheItem

public CacheItem()
Method Detail

getUrl

public java.lang.String getUrl()

setUrl

public void setUrl(java.lang.String url)

isCacheable

public boolean isCacheable()

setCacheable

public void setCacheable(boolean isCacheable)

isCached

public boolean isCached()

setCached

public void setCached(boolean isCached)

getHitCount

public long getHitCount()

setHitCount

public void setHitCount(long hitCount)

getMissCount

public long getMissCount()

setMissCount

public void setMissCount(long missCount)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object