com.iplanet.am.sdk
Interface AMEventListener

All Superinterfaces:
java.util.EventListener

public interface AMEventListener
extends java.util.EventListener

Represents the event listener interface that consumers of this API should implement and register with the SDK to receive Sun Java System Access Manager SDK notifications.

NOTE: It is recommended that the classes that implement this interface also implement Object.equals() method if the default behavior of the method is not desired.


Method Summary
 void objectChanged(AMEvent event)
          Sun Java System Access Manager SDK invokes this method when any object or its contents change.
 void objectRemoved(AMEvent event)
          Sun Java System Access Manager SDK invokes this method when any object is removed.
 void objectRenamed(AMEvent event)
          Sun Java System Access Manager SDK invokes this method when any object is renamed.
 

Method Detail

objectChanged

public void objectChanged(AMEvent event)
Sun Java System Access Manager SDK invokes this method when any object or its contents change.
Parameters:
event - AMEvent object representing the AMEvent.OBJECT_CHANGED event.

objectRemoved

public void objectRemoved(AMEvent event)
Sun Java System Access Manager SDK invokes this method when any object is removed.
Parameters:
event - AMEvent object representing the AMEvent.OBJECT_REMOVED event.

objectRenamed

public void objectRenamed(AMEvent event)
Sun Java System Access Manager SDK invokes this method when any object is renamed.
Parameters:
event - AMEvent object representing the AMEvent.OBJECT_RENAMED event.


Copyright 2005 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.