com.filenet.wcm.toolkit.server.util
Interface WcmDataStoreBindingListener

All Known Implementing Classes:
ControllerUtilities.PropertiesMap, WcmServerCredentials, WcmStepElementState

public interface WcmDataStoreBindingListener

WcmDataStoreBindingListener is an interface modeled after javax.servlet.http.HttpSessionBindingListener.

When objects are stored in the WcmDataStore, valueBound is called. When they are removed, valueUnbound is called.


Method Summary
 void valueBound(WcmDataStore ds, java.lang.String key)
          Method called when an object is bound to WcmDataStore.
 void valueUnbound(WcmDataStore ds, java.lang.String key)
          Method called when an object is un-bound from WcmDataStore.
 

Method Detail

valueBound

public void valueBound(WcmDataStore ds,
                       java.lang.String key)
Method called when an object is bound to WcmDataStore.

Parameters:
ds - A reference to the datastore that the key is being added to.
key - The key being bound.

valueUnbound

public void valueUnbound(WcmDataStore ds,
                         java.lang.String key)
Method called when an object is un-bound from WcmDataStore.

Parameters:
ds - A reference to the datastore that the key is being removed from.
key - The key being unbound.


© Copyright IBM Corp. 2002, 2007. All Rights Reserved.