Example usage for Java javax.naming InitialContext fields, constructors, methods, implement or subclass
The text is from its open source code.
InitialContext() Constructs an initial context. | |
InitialContext(boolean lazy) Constructs an initial context with the option of not initializing it. | |
InitialContext(Hashtable, ?> environment) Constructs an initial context using the supplied environment. |
void | bind(String name, Object obj) |
void | bind(Name name, Object obj) |
void | close() |
Context | createSubcontext(String name) |
Context | createSubcontext(Name name) |
T | doLookup(Name name) A static method to retrieve the named object. |
T | doLookup(String name) A static method to retrieve the named object. |
Hashtable,?> | getEnvironment() |
NameParser | getNameParser(String name) |
NameParser | getNameParser(Name name) |
NamingEnumeration | list(String name) |
NamingEnumeration | list(Name name) |
NamingEnumeration | listBindings(String name) |
NamingEnumeration | listBindings(Name name) |
Object | lookup(String name) |
Object | lookup(Name name) |
Object | lookupLink(String name) |
Object | lookupLink(Name name) |
void | rebind(String name, Object obj) |
void | rebind(Name name, Object obj) |
void | unbind(String name) |
void | unbind(Name name) |