Uses of Interface
org.directwebremoting.datasync.StoreProvider

Packages that use StoreProvider
org.directwebremoting.datasync   
org.directwebremoting.io   
 

Uses of StoreProvider in org.directwebremoting.datasync
 

Classes in org.directwebremoting.datasync that implement StoreProvider
 class AbstractPerXStoreProvider<T>
          A raw StoreProvider works on a global basis, so all users share the same data.
 class AbstractStoreProvider<T>
          Some methods to help implementors create StoreProviders.
 class MapStoreProvider<T>
          A simple implementation of StoreProvider that uses a Map.
 class PerHttpSessionStoreProvider<T>
          A StoreProvider that allows us to have a number of StoreProviders for each HttpSession.
 class PerScriptSessionStoreProvider<T>
          A StoreProvider that allows us to have a number of StoreProviders for each ScriptSession.
 

Methods in org.directwebremoting.datasync that return StoreProvider
 StoreProvider<X> StoreProviderFactory.create(Y y)
          Create a new StoreProvider for a given Y.
static
<T> StoreProvider<T>
Directory.getRegistration(java.lang.String storeId, java.lang.Class<T> type)
          Look up the StoreProvider by ID.
 

Methods in org.directwebremoting.datasync with parameters of type StoreProvider
static void Directory.register(java.lang.String storeId, StoreProvider<?> provider)
          Register a StoreProvider for access by the outside world
 

Uses of StoreProvider in org.directwebremoting.io
 

Methods in org.directwebremoting.io with parameters of type StoreProvider
 void StoreChangeListener.itemAdded(StoreProvider<T> source, Item item)
          Something has added an item to the store
 void StoreChangeListener.itemChanged(StoreProvider<T> source, Item item, java.util.Collection<java.lang.String> changedAttributes)
          Something has updated an item in the store
 void StoreChangeListener.itemRemoved(StoreProvider<T> source, java.lang.String itemId)
          Something has removed an item from the store
 


Copyright ยจ 2008