Uses of Interface
com.sag.osami.contextstore.storage.ISerializedContextStorage

Packages that use ISerializedContextStorage
com.sag.osami.contextstore   
com.sag.osami.contextstore.storage   
com.sag.osami.contextstore.storage.impl   
 

Uses of ISerializedContextStorage in com.sag.osami.contextstore
 

Methods in com.sag.osami.contextstore with parameters of type ISerializedContextStorage
 ContextStoreBuilder ContextStoreBuilder.storage(ISerializedContextStorage storage)
          Sets the storage implementation, which is responsible for persisting, loading and querying context events.
 

Constructors in com.sag.osami.contextstore with parameters of type ISerializedContextStorage
ContextStore(ISerializationHandler serializer, ISerializedContextStorage storage, java.lang.String storeID)
           
 

Uses of ISerializedContextStorage in com.sag.osami.contextstore.storage
 

Classes in com.sag.osami.contextstore.storage that implement ISerializedContextStorage
 class SerializedContextStorage
          This convenience implementation of an ISerializedContextStorage provides trivial implementations for the public API methods which hide the (de)serialization-flags (i.e. all methods from IContextStorage), as well as a trivial setter method for the serialization handler.
 

Uses of ISerializedContextStorage in com.sag.osami.contextstore.storage.impl
 

Classes in com.sag.osami.contextstore.storage.impl that implement ISerializedContextStorage
 class AndroidStorage
          Context store storage implementation based on the Android SQLite API.
 class JDBCStorage
          Context storage implementation based on JDBC.
 class NullStorage
          A dummy storage implementation which does not store anything and returns null or empty collections as results for loading and querying.