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

Packages that use IContextHandler
com.sag.osami.api.context   
com.sag.osami.context.recorder.storage   
com.sag.osami.contextstore   
com.sag.osami.contextstore.serialization   
com.sag.osami.contextstore.ui   
 

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

Methods in com.sag.osami.api.context with parameters of type IContextHandler
 void IContextStore.activateEventsForHandler(IContextHandler ctxHandler)
          Activate notification.
 void IContextStore.deactivateEventsForHandler(IContextHandler ctxHandler)
          Deactivate notification.
 void IContextStore.deregisterHandler(IContextHandler ctxHandler)
          Deregister context handler.
 void IContextStore.deregisterHandlerForContextType(IContextHandler ctxHandler, java.lang.String ctxType)
          Deregister the context handler for the given context type.
 java.lang.String[] IContextStore.getHandlersRegisteredContextTypes(IContextHandler handler)
          Returns all registered context types for committed handler.
 void IContextStore.registerHandler(IContextHandler ctxHandler)
          Register a context handler for notification of new contexts (all types).
 void IContextStore.registerHandler(IContextHandler ctxHandler, java.lang.String[] ctxTypes)
          Register a context handler for notification of new contexts with any type in the given list.
 void IContextStore.registerHandlerForContextType(IContextHandler ctxHandler, java.lang.String ctxType)
          Register the context handler for the given context type.
 

Uses of IContextHandler in com.sag.osami.context.recorder.storage
 

Classes in com.sag.osami.context.recorder.storage that implement IContextHandler
 class SortedRecordingData
          This class is used as an intermediate target for recorded context events.
 

Uses of IContextHandler in com.sag.osami.contextstore
 

Methods in com.sag.osami.contextstore with parameters of type IContextHandler
 void ContextStore.activateEventsForHandler(IContextHandler myHandler)
           
 void ContextStore.deactivateEventsForHandler(IContextHandler myHandler)
           
 void ContextStore.deregisterHandler(IContextHandler contextHandler)
           
 void ContextStore.deregisterHandlerForContextType(IContextHandler handler, java.lang.String contextType)
           
 java.lang.String[] ContextStore.getHandlersRegisteredContextTypes(IContextHandler handler)
           
 void ContextStore.registerHandler(IContextHandler contextHandler)
           
 void ContextStore.registerHandler(IContextHandler contextHandler, java.lang.String[] typeList)
           
 void ContextStore.registerHandlerForContextType(IContextHandler handler, java.lang.String contextType)
           
 

Uses of IContextHandler in com.sag.osami.contextstore.serialization
 

Subinterfaces of IContextHandler in com.sag.osami.contextstore.serialization
 interface ISerializedContextHandler
          A serialized ContextHandler is basically the same as a regular ContextHandler, but receives the context events with serialized payload data.
 

Uses of IContextHandler in com.sag.osami.contextstore.ui
 

Classes in com.sag.osami.contextstore.ui that implement IContextHandler
 class ContextStoreUI