Package org.elkoserver.objdb.store

Classes for implementing various Elko object store types.

See:
          Description

Interface Summary
GetResultHandler Interface for an ObjectStore object to deliver the results of servicing a 'get' request.
ObjectStore Access to a persistent object data storage mechanism.
RequestResultHandler Interface for an ObjectStore object to deliver the results of servicing a simple request, such as 'put' or 'remove', that does not return any objects but only a status indication.
 

Class Summary
ObjectDesc Description of a requested object returned from the object store.
PutDesc Description of a request write to the object store.
QueryDesc Description of a query for an object.
RequestDesc Description of a request for an object.
ResultDesc Description of the result status of an object store operation.
UpdateDesc Description of a request to update to the object store.
UpdateResultDesc Description of the result status of an object update operation.
 

Package org.elkoserver.objdb.store Description

Classes for implementing various Elko object store types. The various interfaces and classes define a generic interface to a basic object oriented database for the persistent storage of the objects used by a Elko server. By implementing the ObjectStore interface, developers can arrange to store objects in arbitrary media of their choosing, rather than being limited to the particular storage mechanisms that are built in.