Uses of Interface
com.sag.osami.api.context.IContextStorage

Packages that use IContextStorage
com.sag.osami.api.context   
com.sag.osami.contextstore   
com.sag.osami.contextstore.storage   
com.sag.osami.contextstore.storage.impl   
 

Uses of IContextStorage in com.sag.osami.api.context
 

Methods in com.sag.osami.api.context that return IContextStorage
 IContextStorage IContextStore.getStorage()
          Returns the storage handler of the context store, which handles storing, loading, querying and deleting context events
 

Uses of IContextStorage in com.sag.osami.contextstore
 

Methods in com.sag.osami.contextstore that return IContextStorage
 IContextStorage ContextStore.getStorage()
           
 

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

Subinterfaces of IContextStorage in com.sag.osami.contextstore.storage
 interface ISerializedContextStorage
          This interface is used by ContextStore for all storage-related logic.
 

Classes in com.sag.osami.contextstore.storage that implement IContextStorage
 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 IContextStorage in com.sag.osami.contextstore.storage.impl
 

Classes in com.sag.osami.contextstore.storage.impl that implement IContextStorage
 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.