javax.naming
and related packages. This package defines the service provider interface (SPI) of the Java Naming and Directory Interface (JNDI). JNDI provides naming and directory functionality to applications written in the Java programming language. It is designed to be independent of any specific naming or directory service implementation. Thus a variety of services--new, emerging, and already deployed ones--can be accessed in a common way.
The JNDI SPI provides the means for creating JNDI service providers, through which JNDI applications access different naming and directory services.
javax.naming.Context.lookup()
method and related methods to return Java objects that are natural and intuitive for the Java programmer. For example, when looking up a printer name from the directory, it is natural for you to expect to get back a printer object on which to operate. Class | Description |
---|---|
DirectoryManager | This class contains methods for supporting DirContext implementations. |
DirObjectFactory | This interface represents a factory for creating an object given an object and attributes about the object. |
DirStateFactory | This interface represents a factory for obtaining the state of an object and corresponding attributes for binding. |
DirStateFactory.Result | An object/attributes pair for returning the result of DirStateFactory.getStateToBind(). |
InitialContextFactory | This interface represents a factory that creates an initial context. |
InitialContextFactoryBuilder | This interface represents a builder that creates initial context factories. |
NamingManager | This class contains methods for creating context objects and objects referred to by location information in the naming or directory service. |
ObjectFactory | This interface represents a factory for creating an object. |
ObjectFactoryBuilder | This interface represents a builder that creates object factories. |
Resolver | This interface represents an "intermediate context" for name resolution. |
ResolveResult | This class represents the result of resolution of a name. |
StateFactory | This interface represents a factory for obtaining the state of an object for binding. |
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.naming/javax/naming/spi/package-summary.html