com.ibm.websphere.naming
Class WsnInitialContextFactory
java.lang.Object
|
+--com.ibm.websphere.naming.WsnInitialContextFactory
- All Implemented Interfaces:
- javax.naming.spi.InitialContextFactory
- public class WsnInitialContextFactory
- extends java.lang.Object
- implements javax.naming.spi.InitialContextFactory
This class is the initial JNDI context factory for WebSphere Application Server. To
use this class as the initial context factory for initial JNDI contexts, set the
property java.naming.factory.initial to a value of
com.ibm.websphere.naming.WsnInitialContextFactory.
JNDI clients running in the WebSphere runtime environment should not have to set this
property because it is already set in a copy of jndi.properties contained in a
WebSphere runtime jar file. To set this property from a program, you can use the Java
constant, javax.naming.Context.INITIAL_CONTEXT_FACTORY, for the property name,
and the constant, com.ibm.websphere.naming.PROPS.INITIAL_CONTEXT_FACTORY, for
the property value.
This class is only a facade of sorts and does not contain any real implementation.
It delegates to an instance of the class specified by an internal property
set in the properties file, jndiprovider.properties, which is part of the
WebSphere installation. Users of WebSphere do not need to set this property. However,
they do need jndiprovider.properties to be in their runtime environment so
that it can be found by the class loader in effect.
Method Summary |
javax.naming.Context |
getInitialContext(java.util.Hashtable env)
This method is implemented as part of the javax.naming.spi.InitialContextFactory
interface. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
WsnInitialContextFactory
public WsnInitialContextFactory()
- Class constructor. Instances of this class are created by the constructor for the
class javax.naming.InitialContext. JNDI users do not directly create
instances of this class.
getInitialContext
public javax.naming.Context getInitialContext(java.util.Hashtable env)
throws javax.naming.NamingException
- This method is implemented as part of the javax.naming.spi.InitialContextFactory
interface. This method is invoked by the javax.naming.InitialContext class.
JNDI users do not invoke this method directly.
- Specified by:
getInitialContext
in interface javax.naming.spi.InitialContextFactory