| Package | Description |
|---|---|
| javax.naming |
Provides the classes and interfaces for accessing naming services.
|
| javax.naming.directory |
Extends the
javax.naming package to provide functionality for accessing directory services.
|
| javax.naming.event |
Provides support for event notification when accessing naming and directory services.
|
| Modifier and Type | Method and Description |
|---|---|
NamingEnumeration |
Context.listBindings(Name
Enumerates the names bound in the named context, along with the objects bound to them.
|
NamingEnumeration |
InitialContext.listBindings(Name
|
NamingEnumeration |
Context.listBindings(String
Enumerates the names bound in the named context, along with the objects bound to them.
|
NamingEnumeration |
InitialContext.listBindings(String
|
| Modifier and Type | Class and Description |
|---|---|
class |
SearchResult
This class represents an item in the NamingEnumeration returned as a result of the DirContext.search() methods.
|
| Modifier and Type | Field and Description |
|---|---|
protected Binding |
NamingEvent.newBinding
Contains information about the object after the change.
|
protected Binding |
NamingEvent.oldBinding
Contains information about the object before the change.
|
| Modifier and Type | Method and Description |
|---|---|
Binding |
NamingEvent.getNewBinding()
Retrieves the binding of the object after the change.
|
Binding |
NamingEvent.getOldBinding()
Retrieves the binding of the object before the change.
|
| Constructor and Description | |
|---|---|
NamingEvent(EventContext
Constructs an instance of
NamingEvent.
|