|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Specifies the methods that a listener interested in namespace changes must implement. Specifically, the listener is interested in NamingEvents with event types of OBJECT_ADDED, OBJECT_RENAMED, or OBJECT_REMOVED.
Such a listener must:
NamingEvent
,
ObjectChangeListener
,
EventContext
,
EventDirContext
Method Summary | |
void |
objectAdded(NamingEvent evt)
Called when an object has been added. |
void |
objectRemoved(NamingEvent evt)
Called when an object has been removed. |
void |
objectRenamed(NamingEvent evt)
Called when an object has been renamed. |
Methods inherited from interface javax.naming.event.NamingListener |
namingExceptionThrown |
Method Detail |
public void objectAdded(NamingEvent evt)
The binding of the newly added object can be obtained using evt.getNewBinding().
evt
- The nonnull event.NamingEvent.OBJECT_ADDED
public void objectRemoved(NamingEvent evt)
The binding of the newly removed object can be obtained using evt.getOldBinding().
evt
- The nonnull event.NamingEvent.OBJECT_REMOVED
public void objectRenamed(NamingEvent evt)
The binding of the renamed object can be obtained using evt.getNewBinding(). Its old binding (before the rename) can be obtained using evt.getOldBinding(). One of these may be null if the old/new binding was outside the scope in which the listener has registered interest.
evt
- The nonnull event.NamingEvent.OBJECT_RENAMED
|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.