Package com.appenginefan.toolkit.persistence

Interface Summary
Persistence<T> Represents a simple way of persisting a particular object type.
 

Class Summary
DatastorePersistence A datastore-based persistence for byte arrays.
LongPersistence Storage specialized in persisting long values.
MapBasedPersistence<T> A simple, map-based store that holds data in memory.
MarshallingPersistence<T> Wraps around a byte array based persistence for the backend but uses a different type.
ObjectPersistence<T extends Serializable> A persistence that uses serialization to put objects into a store.
ProtocolBufferPersistence<T extends Message> Persistence that uses googles protocol buffer framework for efficient representation and serialization of data.
StringPersistence Storage specialized in persisting strings.
Utilities A set of useful static utility functions on Persistence objects
 

Exception Summary
StoreException Represents a problem that occurred while doing an operation on the store.