| javax.naming.event |
|
| Java Source File Name | Type | Comment |
| EventContext.java | Interface | This interface is for registering and deregistering to receive events about
objects that are bound in a context.
Listeners register an interest in a target object or objects. |
| EventDirContext.java | Interface | This interface allows registering of listeners for events concerning objects
bound in a directory context.
The registration methods take an RFC2254 search filter as a parameter, which
is used to select the objects to generate events for.
Sometimes objects that satisfy a search filter may be bound after a listener
is registered, specifying the filter. |
| NamespaceChangeListener.java | Interface | The listener interface to get notification of namespace change events.
These events include naming events with event type OBJECT_ADDED,
OBJECT_RENAMED, or OBJECT_REMOVED. |
| NamingEvent.java | Class | An event from a directory or naming service, for passing to a listener.
The source of the event is always the EventContext that the
listener registered with. |
| NamingExceptionEvent.java | Class | An event object contains a NamingException. |
| NamingListener.java | Interface | This is a root listener interface that provides a method needed by all its
subinterfaces.
The method is namingExceptionThrown, which is required for
notification of problems when registering a listener, or problems when
getting information to send an event to a listener. |
| ObjectChangeListener.java | Interface | The listener interface to get notification of object change events.
These object change events include naming events with type
OBJECT_CHANGED. |