Name

NamespaceChangeListener

Synopsis

A NamespaceChangeListener is used to listen for changes in the namespace (objects being added, removed or renamed). To implement this listener, you must implement the objectAdded(), objectRemove() and objectRenamed() callbacks, as well as the namingExceptionThrown() method inherited from NamingListener.

                  
public interface NamespaceChangeListener extends NamingListener {
// Public Instance Methods
   public abstract void objectAdded( NamingEvent evt);  
   public abstract void objectRemoved( NamingEvent evt);  
   public abstract void objectRenamed( NamingEvent evt);  
}

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.