ehcache

Serialized Form


Package net.sf.ehcache

Class net.sf.ehcache.CacheException extends java.lang.RuntimeException implements Serializable

Class net.sf.ehcache.Element extends java.lang.Object implements Serializable

serialVersionUID: 3343087714201120157L

Serialized Fields

key

java.lang.Object key
the cache key.


value

java.lang.Object value
the value.


version

long version
version of the element. System.currentTimeMillis() is used to compute version for updated elements. That way, the actual version of the updated element does not need to be checked.


creationTime

long creationTime
The creation time.


lastAccessTime

long lastAccessTime
The last access time.


nextToLastAccessTime

long nextToLastAccessTime
The next to last access time. Used by the expiry mechanism


hitCount

long hitCount
The number of times the element was hit.


timeToLive

int timeToLive
The amount of time for the element to live, in seconds. 0 indicates unlimited.


timeToIdle

int timeToIdle
The amount of time for the element to idle, in seconds. 0 indicates unlimited.


lastUpdateTime

long lastUpdateTime
If there is an Element in the Cache and it is replaced with a new Element for the same key, then both the version number and lastUpdateTime should be updated to reflect that. The creation time will be the creation time of the new Element, not the original one, so that TTL concepts still work.


eternal

boolean eternal
Whether the element is eternal, i.e. never expires.


lifespanSet

boolean lifespanSet
Whether any combination of eternal, TTL or TTI has been set.

Class net.sf.ehcache.MimeTypeByteArray extends java.lang.Object implements Serializable

Serialized Fields

mimeType

java.lang.String mimeType

value

byte[] value

Class net.sf.ehcache.ObjectExistsException extends CacheException implements Serializable

Class net.sf.ehcache.Statistics extends java.lang.Object implements Serializable

serialVersionUID: 3606940454221918725L

Serialized Fields

statisticsAccuracy

int statisticsAccuracy

cacheHits

long cacheHits

onDiskHits

long onDiskHits

inMemoryHits

long inMemoryHits

misses

long misses

size

long size

averageGetTime

float averageGetTime

evictionCount

long evictionCount

Class net.sf.ehcache.Status extends java.lang.Object implements Serializable

serialVersionUID: 2732730630423367732L

Serialized Fields

name

java.lang.String name

intValue

int intValue

Package net.sf.ehcache.constructs.asynchronous

Class net.sf.ehcache.constructs.asynchronous.AsynchronousCommandException extends java.lang.Exception implements Serializable

Class net.sf.ehcache.constructs.asynchronous.CommandNotFoundInCacheException extends AsynchronousCommandException implements Serializable

Class net.sf.ehcache.constructs.asynchronous.RetryAttemptTooSoonException extends AsynchronousCommandException implements Serializable

Class net.sf.ehcache.constructs.asynchronous.TooManyRetriesException extends AsynchronousCommandException implements Serializable


Package net.sf.ehcache.constructs.blocking

Class net.sf.ehcache.constructs.blocking.LockTimeoutException extends CacheException implements Serializable


Package net.sf.ehcache.constructs.web

Class net.sf.ehcache.constructs.web.AlreadyCommittedException extends ResponseHeadersNotModifiableException implements Serializable

Class net.sf.ehcache.constructs.web.AlreadyGzippedException extends CacheException implements Serializable

Class net.sf.ehcache.constructs.web.GenericResponseWrapper extends javax.servlet.http.HttpServletResponseWrapper implements Serializable

serialVersionUID: -5976708169031065498L

Serialized Fields

statusCode

int statusCode

contentLength

int contentLength

contentType

java.lang.String contentType

headers

java.util.List<E> headers

cookies

java.util.List<E> cookies

outstr

javax.servlet.ServletOutputStream outstr

writer

java.io.PrintWriter writer

Class net.sf.ehcache.constructs.web.PageInfo extends java.lang.Object implements Serializable

Serialized Fields

headers

java.util.ArrayList<E> headers

serializableCookies

java.util.ArrayList<E> serializableCookies

contentType

java.lang.String contentType

gzippedBody

byte[] gzippedBody

ungzippedBody

byte[] ungzippedBody

statusCode

int statusCode

storeGzipped

boolean storeGzipped

Class net.sf.ehcache.constructs.web.ResponseHeadersNotModifiableException extends CacheException implements Serializable

Class net.sf.ehcache.constructs.web.SerializableCookie extends java.lang.Object implements Serializable

serialVersionUID: 8628587700329421486L

Serialized Fields

name

java.lang.String name

value

java.lang.String value

comment

java.lang.String comment

domain

java.lang.String domain

maxAge

int maxAge

path

java.lang.String path

secure

boolean secure

version

int version

Package net.sf.ehcache.constructs.web.filter

Class net.sf.ehcache.constructs.web.filter.FilterNonReentrantException extends CacheException implements Serializable


Package net.sf.ehcache.distribution

Class net.sf.ehcache.distribution.ConfigurableRMIClientSocketFactory extends java.lang.Object implements Serializable

serialVersionUID: 4920508630517373246L

Serialized Fields

socketTimeoutMillis

int socketTimeoutMillis

Class net.sf.ehcache.distribution.EventMessage extends java.lang.Object implements Serializable

serialVersionUID: -293616939110963629L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

event

int event
The event component.


key

java.io.Serializable key
The key component.


wasElementNotNull

boolean wasElementNotNull
Used to check if the value has been GCed

Class net.sf.ehcache.distribution.RemoteCacheException extends CacheException implements Serializable

Class net.sf.ehcache.distribution.RMICachePeer extends java.rmi.server.UnicastRemoteObject implements Serializable

Serialized Fields

hostname

java.lang.String hostname

rmiRegistryPort

java.lang.Integer rmiRegistryPort

remoteObjectPort

java.lang.Integer remoteObjectPort

cache

Ehcache cache

Package net.sf.ehcache.distribution.jgroups

Class net.sf.ehcache.distribution.jgroups.JGroupEventMessage extends EventMessage implements Serializable

Serialized Fields

cacheName

java.lang.String cacheName

Class net.sf.ehcache.distribution.jgroups.JGroupSerializable extends java.lang.Object implements Serializable

Serialized Fields

event

int event

key

java.io.Serializable key

value

java.lang.Object value

cacheName

java.lang.String cacheName

Package net.sf.ehcache.jcache

Class net.sf.ehcache.jcache.JCacheStatistics extends java.lang.Object implements Serializable

Serialized Fields

statistics

Statistics statistics

Package net.sf.ehcache.management

Class net.sf.ehcache.management.CacheConfiguration extends java.lang.Object implements Serializable

serialVersionUID: -8944774509593267228L

Serialized Fields

cacheConfiguration

CacheConfiguration cacheConfiguration

objectName

javax.management.ObjectName objectName

Package net.sf.ehcache.store

Class net.sf.ehcache.store.LruMemoryStore.SpoolingLinkedHashMap extends java.util.LinkedHashMap implements Serializable

Class net.sf.ehcache.store.LruMemoryStore.SpoolingLRUMap extends org.apache.commons.collections.LRUMap implements Serializable

Serialization Methods

readExternal

public void readExternal(java.io.ObjectInput arg0)
                  throws java.io.IOException,
                         java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeExternal

public void writeExternal(java.io.ObjectOutput arg0)
                   throws java.io.IOException
Throws:
java.io.IOException

Class net.sf.ehcache.store.MemoryStoreEvictionPolicy extends java.lang.Object implements Serializable

Serialized Fields

myName

java.lang.String myName


ehcache