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
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.
Constructor Summary
Constructor and Description |
---|
WsnInitialContextFactory()
Class constructor.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getInitialContext(java.util.Hashtable<?,?> env)
This method is implemented as part of the
javax.naming.spi.InitialContextFactory
interface.
|
|
toString()
Returns a string representation of this object.
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail
WsnInitialContextFactory
- public WsnInitialContextFactory( )
Method Detail
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
Throws:
javax.naming.NamingException
toString
- public java.lang.String toString( )
Returns a string representation of this object.
Overrides:
toString
in class java.lang.Object
Returns:
a string representation of this object.
javax.naming.InitialContext
. JNDI users do not directly create instances of this class.