|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface NamespaceChangeListener
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 |
---|
void objectAdded(NamingEvent evt)
The binding of the newly added object can be obtained using evt.getNewBinding().
evt
- The nonnull event.NamingEvent.OBJECT_ADDED
void objectRemoved(NamingEvent evt)
The binding of the newly removed object can be obtained using evt.getOldBinding().
evt
- The nonnull event.NamingEvent.OBJECT_REMOVED
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 Standard Ed. 5.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.