This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.naming
class InitialContext

java.lang.Object extended by javax.naming.InitialContext
All Implemented Interfaces:
Context
Direct Known Subclasses:
InitialDirContext

Most common way to construct:

InitialContext iniCtx = new InitialContext();

Based on 265 examples


public class InitialContext
extends Object
implements Context

This class is the starting context for performing naming operations.

All naming operations are relative to a context. The initial context implements the Context interface and provides the starting point for resolution of names.

When the initial context is constructed, its environment is initialized with properties defined in the environment parameter passed to the constructor, and in any application resource files. In addition, a small number of standard JNDI properties may be specified as system properties or as applet parameters (through the use of {@link Context#APPLET}). These special properties are listed in the field detail sections of the Context and LdapContext interface documentation.

JNDI determines each property's value by merging the values from the following two sources, in order:

  1. The first occurrence of the property from the constructor's environment parameter and (for appropriate properties) the applet parameters and system properties.
  2. The application resource files (jndi.properties).
For each property found in both of these two sources, or in more than one application resource file, the property's value is determined as follows. If the property is one of the standard JNDI properties that specify a list of JNDI factories (see Context), all of the values are concatenated into a single colon-separated list. For other properties, only the first value found is used.

The initial context implementation is determined at runtime. The default policy uses the environment property "{@link Context#INITIAL_CONTEXT_FACTORY java.naming.factory.initial}", which contains the class name of the initial context factory. An exception to this policy is made when resolving URL strings, as described below.

When a URL string (a String of the form scheme_id:rest_of_name) is passed as a name parameter to any method, a URL context factory for handling that scheme is located and used to resolve the URL. If no such factory is found, the initial context specified by "java.naming.factory.initial" is used. Similarly, when a CompositeName object whose first component is a URL string is passed as a name parameter to any method, a URL context factory is located and used to resolve the first name component. See {@link NamingManager#getURLContext NamingManager.getURLContext()} for a description of how URL context factories are located.

This default policy of locating the initial context and URL context factories may be overridden by calling NamingManager.setInitialContextFactoryBuilder().

NoInitialContextException is thrown when an initial context cannot be instantiated. This exception can be thrown during any interaction with the InitialContext, not only when the InitialContext is constructed. For example, the implementation of the initial context might lazily retrieve the context only when actual methods are invoked on it. The application should not have any dependency on when the existence of an initial context is determined.

When the environment property "java.naming.factory.initial" is non-null, the InitialContext constructor will attempt to create the initial context specified therein. At that time, the initial context factory involved might throw an exception if a problem is encountered. However, it is provider implementation-dependent when it verifies and indicates to the users of the initial context any environment property- or connection- related problems. It can do so lazily--delaying until an operation is performed on the context, or eagerly, at the time the context is constructed.

An InitialContext instance is not synchronized against concurrent access by multiple threads. Multiple threads each manipulating a different InitialContext instance need not synchronize. Threads that need to access a single InitialContext instance concurrently should synchronize amongst themselves and provide the necessary locking.


Field Summary
protected Context defaultInitCtx
          Field holding the result of calling NamingManager.getInitialContext().
protected boolean gotDefault
          Field indicating whether the initial context has been obtained by calling NamingManager.getInitialContext().
protected Hashtable myProps
          The environment associated with this InitialContext.
 
Constructor Summary
 

          Constructs an initial context.
protected
InitialContext(boolean lazy)

          Constructs an initial context with the option of not initializing it.
 

          Constructs an initial context using the supplied environment.
 
Method Summary
 Object
addToEnvironment(String propName, Object propVal)

          
 void
bind(Name name, Object obj)

          
 void
bind(String name, Object obj)

          
 void

          
 Name
composeName(Name name, Name prefix)

          Composes the name of this context with a name relative to this context.
 String
composeName(String name, String prefix)

          Composes the name of this context with a name relative to this context.
 Context

          
 Context

          
 void

          
 void

          
static Object
doLookup(Name name)

          A static method to retrieve the named object.
static Object

          A static method to retrieve the named object.
protected Context

          Retrieves the initial context by calling NamingManager.getInitialContext() and cache it in defaultInitCtx.
 Hashtable

          
 String

          
 NameParser

          
 NameParser

          
protected Context

          Retrieves a context for resolving name.
protected Context

          Retrieves a context for resolving the string name name.
protected void
init(Hashtable environment)

          Initializes the initial context using the supplied environment.
 NamingEnumeration
list(Name name)

          
 NamingEnumeration
list(String name)

          
 NamingEnumeration

          
 NamingEnumeration

          
 Object
lookup(Name name)

          
 Object
lookup(String name)

          
 Object

          
 Object

          
 void
rebind(Name name, Object obj)

          
 void
rebind(String name, Object obj)

          
 Object

          
 void
rename(Name oldName, Name newName)

          
 void
rename(String oldName, String newName)

          
 void
unbind(Name name)

          
 void
unbind(String name)

          
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

defaultInitCtx

protected Context defaultInitCtx
Field holding the result of calling NamingManager.getInitialContext(). It is set by getDefaultInitCtx() the first time getDefaultInitCtx() is called. Subsequent invocations of getDefaultInitCtx() return the value of defaultInitCtx.

gotDefault

protected boolean gotDefault
Field indicating whether the initial context has been obtained by calling NamingManager.getInitialContext(). If true, its result is in defaultInitCtx.

myProps

protected Hashtable myProps
The environment associated with this InitialContext. It is initialized to null and is updated by the constructor that accepts an environment or by the init() method.
Constructor Detail

InitialContext

public InitialContext()
               throws NamingException
Constructs an initial context. No environment properties are supplied. Equivalent to new InitialContext(null).

Throws:
NamingException - if a naming exception is encountered

InitialContext

protected InitialContext(boolean lazy)
                  throws NamingException
Constructs an initial context with the option of not initializing it. This may be used by a constructor in a subclass when the value of the environment parameter is not yet known at the time the InitialContext constructor is called. The subclass's constructor will call this constructor, compute the value of the environment, and then call init() before returning.

Parameters:
lazy - true means do not initialize the initial context; false is equivalent to calling new InitialContext()
Throws:
NamingException - if a naming exception is encountered

InitialContext

public InitialContext(Hashtable environment)
               throws NamingException
Constructs an initial context using the supplied environment. Environment properties are discussed in the class description.

This constructor will not modify environment or save a reference to it, but may save a clone.

Parameters:
environment - environment used to create the initial context. Null indicates an empty environment.
Throws:
NamingException - if a naming exception is encountered
Method Detail

addToEnvironment

public Object addToEnvironment(String propName,
                               Object propVal)
                        throws NamingException
Parameters:
propName
propVal
Throws:
NamingException

bind

public void bind(Name name,
                 Object obj)
          throws NamingException
Parameters:
name
obj
Throws:
NamingException

bind

public void bind(String name,
                 Object obj)
          throws NamingException
Parameters:
name
obj
Throws:
NamingException

close

public void close()
           throws NamingException
Throws:
NamingException

composeName

public Name composeName(Name name,
                        Name prefix)
                 throws NamingException
Composes the name of this context with a name relative to this context. Since an initial context may never be named relative to any context other than itself, the value of the prefix parameter must be an empty name.

Parameters:
name
prefix
Throws:
NamingException

composeName

public String composeName(String name,
                          String prefix)
                   throws NamingException
Composes the name of this context with a name relative to this context. Since an initial context may never be named relative to any context other than itself, the value of the prefix parameter must be an empty name ("").

Parameters:
name
prefix
Throws:
NamingException

createSubcontext

public Context createSubcontext(Name name)
                         throws NamingException
Parameters:
name
Throws:
NamingException

createSubcontext

public Context createSubcontext(String name)
                         throws NamingException
Parameters:
name
Throws:
NamingException

destroySubcontext

public void destroySubcontext(Name name)
                       throws NamingException
Parameters:
name
Throws:
NamingException

destroySubcontext

public void destroySubcontext(String name)
                       throws NamingException
Parameters:
name
Throws:
NamingException

doLookup

public static Object doLookup(Name name)
                       throws NamingException
A static method to retrieve the named object. This is a shortcut method equivalent to invoking:

InitialContext ic = new InitialContext(); Object obj = ic.lookup();

If name is empty, returns a new instance of this context (which represents the same naming context as this context, but its environment may be modified independently and it may be accessed concurrently).

Parameters:
name - the name of the object to look up
Returns:
the object bound to name
Throws:
NamingException - if a naming exception is encountered

doLookup

public static Object doLookup(String name)
                       throws NamingException
A static method to retrieve the named object. See {@link #doLookup(Name)} for details.

Parameters:
name - the name of the object to look up
Returns:
the object bound to name
Throws:
NamingException - if a naming exception is encountered

getDefaultInitCtx

protected Context getDefaultInitCtx()
                             throws NamingException
Retrieves the initial context by calling NamingManager.getInitialContext() and cache it in defaultInitCtx. Set gotDefault so that we know we've tried this before.

Returns:
The non-null cached initial context.
Throws:
NamingException - If a naming exception was encountered.

getEnvironment

public Hashtable getEnvironment()
                         throws NamingException
Throws:
NamingException

getNameInNamespace

public String getNameInNamespace()
                          throws NamingException
Throws:
NamingException

getNameParser

public NameParser getNameParser(Name name)
                         throws NamingException
Parameters:
name
Throws:
NamingException

getNameParser

public NameParser getNameParser(String name)
                         throws NamingException
Parameters:
name
Throws:
NamingException

getURLOrDefaultInitCtx

protected Context getURLOrDefaultInitCtx(Name name)
                                  throws NamingException
Retrieves a context for resolving name. If the first component of name name is a URL string, then attempt to find a URL context for it. If none is found, or if the first component of name is not a URL string, then return getDefaultInitCtx().

When creating a subclass of InitialContext, use this method as follows. Define a new method that uses this method to get an initial context of the desired subclass.

 protected XXXContext getURLOrDefaultInitXXXCtx(Name name) 
 throws NamingException {
  Context answer = getURLOrDefaultInitCtx(name);
  if (!(answer instanceof XXXContext)) {
    if (answer == null) {
	    throw new NoInitialContextException();
    } else {
	    throw new NotContextException("Not an XXXContext");
    }
 	}
	return (XXXContext)answer;
 }
 
When providing implementations for the new methods in the subclass, use this newly defined method to get the initial context.

 public Object XXXMethod1(Name name, ...) {
	throws NamingException {
    return getURLOrDefaultInitXXXCtx(name).XXXMethod1(name, ...);
 }
 

Parameters:
name - The non-null name for which to get the context.
Returns:
A URL context for name or the cached initial context. The result cannot be null.
Throws:
NamingException - In a naming exception is encountered.

getURLOrDefaultInitCtx

protected Context getURLOrDefaultInitCtx(String name)
                                  throws NamingException
Retrieves a context for resolving the string name name. If name name is a URL string, then attempt to find a URL context for it. If none is found, or if name is not a URL string, then return getDefaultInitCtx().

See getURLOrDefaultInitCtx(Name) for description of how a subclass should use this method.

Parameters:
name - The non-null name for which to get the context.
Returns:
A URL context for name or the cached initial context. The result cannot be null.
Throws:
NamingException - In a naming exception is encountered.

init

protected void init(Hashtable environment)
             throws NamingException
Initializes the initial context using the supplied environment. Environment properties are discussed in the class description.

This method will modify environment and save a reference to it. The caller may no longer modify it.

Parameters:
environment - environment used to create the initial context. Null indicates an empty environment.
Throws:
NamingException - if a naming exception is encountered

list

public NamingEnumeration list(Name name)
                       throws NamingException
Parameters:
name
Throws:
NamingException

list

public NamingEnumeration list(String name)
                       throws NamingException
Parameters:
name
Throws:
NamingException

listBindings

public NamingEnumeration listBindings(Name name)
                               throws NamingException
Parameters:
name
Throws:
NamingException

listBindings

public NamingEnumeration listBindings(String name)
                               throws NamingException
Parameters:
name
Throws:
NamingException

lookup

public Object lookup(Name name)
              throws NamingException
Parameters:
name
Throws:
NamingException

lookup

public Object lookup(String name)
              throws NamingException
Parameters:
name
Throws:
NamingException

lookupLink

public Object lookupLink(Name name)
                  throws NamingException
Parameters:
name
Throws:
NamingException

lookupLink

public Object lookupLink(String name)
                  throws NamingException
Parameters:
name
Throws:
NamingException

rebind

public void rebind(Name name,
                   Object obj)
            throws NamingException
Parameters:
name
obj
Throws:
NamingException

rebind

public void rebind(String name,
                   Object obj)
            throws NamingException
Parameters:
name
obj
Throws:
NamingException

removeFromEnvironment

public Object removeFromEnvironment(String propName)
                             throws NamingException
Parameters:
propName
Throws:
NamingException

rename

public void rename(Name oldName,
                   Name newName)
            throws NamingException
Parameters:
oldName
newName
Throws:
NamingException

rename

public void rename(String oldName,
                   String newName)
            throws NamingException
Parameters:
oldName
newName
Throws:
NamingException

unbind

public void unbind(Name name)
            throws NamingException
Parameters:
name
Throws:
NamingException

unbind

public void unbind(String name)
            throws NamingException
Parameters:
name
Throws:
NamingException


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.