Class InitialLdapContext
- All Implemented Interfaces:
Context, DirContext, LdapContext
See javax.naming.InitialContext
and
javax.naming.InitialDirContext
for details on synchronization,
and the policy for how an initial context is created.
Request Controls
When you create an initial context (InitialLdapContext
),
you can specify a list of request controls.
These controls will be used as the request controls for any
implicit LDAP "bind" operation performed by the context or contexts
derived from the context. These are called connection request controls.
Use getConnectControls()
to get a context's connection request
controls.
The request controls supplied to the initial context constructor
are not used as the context request controls
for subsequent context operations such as searches and lookups.
Context request controls are set and updated by using
setRequestControls()
.
As shown, there can be two different sets of request controls associated with a context: connection request controls and context request controls. This is required for those applications needing to send critical controls that might not be applicable to both the context operation and any implicit LDAP "bind" operation. A typical user program would do the following:
It specifies first the critical controls for creating the initial context (InitialLdapContext lctx = new InitialLdapContext(env, critConnCtls); lctx.setRequestControls(critModCtls); lctx.modifyAttributes(name, mods); Controls[] respCtls = lctx.getResponseControls();
critConnCtls
), and then sets the context's request controls
(critModCtls
) for the context operation. If for some reason
lctx
needs to reconnect to the server, it will use
critConnCtls
. See the LdapContext
interface for
more discussion about request controls.
Service provider implementors should read the "Service Provider" section
in the LdapContext
class description for implementation details.
- Since:
- 1.3
- See Also:
-
Field Summary
Fields declared in class InitialContext
defaultInitCtx, gotDefault, myProps
Modifier and TypeFieldDescriptionprotected Context
Field holding the result of calling NamingManager.getInitialContext().protected boolean
Field indicating whether the initial context has been obtained by calling NamingManager.getInitialContext().The environment associated with this InitialContext.Fields declared in interface Context
AUTHORITATIVE, BATCHSIZE, DNS_URL, INITIAL_CONTEXT_FACTORY, LANGUAGE, OBJECT_FACTORIES, PROVIDER_URL, REFERRAL, SECURITY_AUTHENTICATION, SECURITY_CREDENTIALS, SECURITY_PRINCIPAL, SECURITY_PROTOCOL, STATE_FACTORIES, URL_PKG_PREFIXES
Modifier and TypeFieldDescriptionstatic final String
Constant that holds the name of the environment property for specifying the authoritativeness of the service requested.static final String
Constant that holds the name of the environment property for specifying the batch size to use when returning data via the service's protocol.static final String
Constant that holds the name of the environment property for specifying the DNS host and domain names to use for the JNDI URL context (for example, "dns://somehost/wiz.com").static final String
Constant that holds the name of the environment property for specifying the initial context factory to use.static final String
Constant that holds the name of the environment property for specifying the preferred language to use with the service.static final String
Constant that holds the name of the environment property for specifying the list of object factories to use.static final String
Constant that holds the name of the environment property for specifying configuration information for the service provider to use.static final String
Constant that holds the name of the environment property for specifying how referrals encountered by the service provider are to be processed.static final String
Constant that holds the name of the environment property for specifying the security level to use.static final String
Constant that holds the name of the environment property for specifying the credentials of the principal for authenticating the caller to the service.static final String
Constant that holds the name of the environment property for specifying the identity of the principal for authenticating the caller to the service.static final String
Constant that holds the name of the environment property for specifying the security protocol to use.static final String
Constant that holds the name of the environment property for specifying the list of state factories to use.static final String
Constant that holds the name of the environment property for specifying the list of package prefixes to use when loading in URL context factories.Fields declared in interface DirContext
ADD_ATTRIBUTE, REMOVE_ATTRIBUTE, REPLACE_ATTRIBUTE
Modifier and TypeFieldDescriptionstatic final int
This constant specifies to add an attribute with the specified values.static final int
This constant specifies to delete the specified attribute values from the attribute.static final int
This constant specifies to replace an attribute with specified values.Fields declared in interface LdapContext
CONTROL_FACTORIES
Modifier and TypeFieldDescriptionstatic final String
Constant that holds the name of the environment property for specifying the list of control factories to use. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an initial context using no environment properties or connection request controls.InitialLdapContext
(Hashtable<?, ?> environment, Control[] connCtls) Constructs an initial context using environment properties and connection request controls. -
Method Summary
Modifier and TypeMethodDescriptionextendedOperation
(ExtendedRequest request) Performs an extended operation.Control[]
Retrieves the connection request controls in effect for this context.Control[]
Retrieves the request controls in effect for this context.Control[]
Retrieves the response controls produced as a result of the last method invoked on this context.newInstance
(Control[] reqCtls) Creates a new instance of this context initialized using request controls.void
Reconnects to the LDAP server using the supplied controls and this context's environment.void
setRequestControls
(Control[] requestControls) Sets the request controls for methods subsequently invoked on this context.Methods declared in class InitialDirContext
bind, bind, createSubcontext, createSubcontext, getAttributes, getAttributes, getAttributes, getAttributes, getSchema, getSchema, getSchemaClassDefinition, getSchemaClassDefinition, modifyAttributes, modifyAttributes, modifyAttributes, modifyAttributes, rebind, rebind, search, search, search, search, search, search, search, search
Modifier and TypeMethodDescriptionvoid
bind
(String name, Object obj, Attributes attrs) Binds a name to an object, along with associated attributes.void
bind
(Name name, Object obj, Attributes attrs) Binds a name to an object, along with associated attributes.createSubcontext
(String name, Attributes attrs) Creates and binds a new context, along with associated attributes.createSubcontext
(Name name, Attributes attrs) Creates and binds a new context, along with associated attributes.getAttributes
(String name) Retrieves all of the attributes associated with a named object.getAttributes
(String name, String[] attrIds) Retrieves selected attributes associated with a named object.getAttributes
(Name name) Retrieves all of the attributes associated with a named object.getAttributes
(Name name, String[] attrIds) Retrieves selected attributes associated with a named object.Retrieves the schema associated with the named object.Retrieves the schema associated with the named object.Retrieves a context containing the schema objects of the named object's class definitions.getSchemaClassDefinition
(Name name) Retrieves a context containing the schema objects of the named object's class definitions.void
modifyAttributes
(String name, int mod_op, Attributes attrs) Modifies the attributes associated with a named object.void
modifyAttributes
(String name, ModificationItem[] mods) Modifies the attributes associated with a named object using an ordered list of modifications.void
modifyAttributes
(Name name, int mod_op, Attributes attrs) Modifies the attributes associated with a named object.void
modifyAttributes
(Name name, ModificationItem[] mods) Modifies the attributes associated with a named object using an ordered list of modifications.void
rebind
(String name, Object obj, Attributes attrs) Binds a name to an object, along with associated attributes, overwriting any existing binding.void
rebind
(Name name, Object obj, Attributes attrs) Binds a name to an object, along with associated attributes, overwriting any existing binding.search
(String name, String filterExpr, Object[] filterArgs, SearchControls cons) Searches in the named context or object for entries that satisfy the given search filter.search
(String name, String filter, SearchControls cons) Searches in the named context or object for entries that satisfy the given search filter.search
(String name, Attributes matchingAttributes) Searches in a single context for objects that contain a specified set of attributes.search
(String name, Attributes matchingAttributes, String[] attributesToReturn) Searches in a single context for objects that contain a specified set of attributes, and retrieves selected attributes.search
(Name name, String filterExpr, Object[] filterArgs, SearchControls cons) Searches in the named context or object for entries that satisfy the given search filter.search
(Name name, String filter, SearchControls cons) Searches in the named context or object for entries that satisfy the given search filter.search
(Name name, Attributes matchingAttributes) Searches in a single context for objects that contain a specified set of attributes.search
(Name name, Attributes matchingAttributes, String[] attributesToReturn) Searches in a single context for objects that contain a specified set of attributes, and retrieves selected attributes.Methods declared in class InitialContext
addToEnvironment, bind, bind, close, composeName, composeName, createSubcontext, createSubcontext, destroySubcontext, destroySubcontext, doLookup, doLookup, getDefaultInitCtx, getEnvironment, getNameInNamespace, getNameParser, getNameParser, getURLOrDefaultInitCtx, getURLOrDefaultInitCtx, init, list, list, listBindings, listBindings, lookup, lookup, lookupLink, lookupLink, rebind, rebind, removeFromEnvironment, rename, rename, unbind, unbind
Modifier and TypeMethodDescriptionaddToEnvironment
(String propName, Object propVal) Adds a new environment property to the environment of this context.void
Binds a name to an object.void
Binds a name to an object.void
close()
Closes this context.composeName
(String name, String prefix) Composes the name of this context with a name relative to this context.composeName
(Name name, Name prefix) Composes the name of this context with a name relative to this context.createSubcontext
(String name) Creates and binds a new context.createSubcontext
(Name name) Creates and binds a new context.void
destroySubcontext
(String name) Destroys the named context and removes it from the namespace.void
destroySubcontext
(Name name) Destroys the named context and removes it from the namespace.static <T> T
A static method to retrieve the named object.static <T> T
A static method to retrieve the named object.protected Context
Retrieves the initial context by callingNamingManager.getInitialContext()
and cache it in defaultInitCtx.Hashtable
<?, ?> Retrieves the environment in effect for this context.Retrieves the full name of this context within its own namespace.getNameParser
(String name) Retrieves the parser associated with the named context.getNameParser
(Name name) Retrieves the parser associated with the named context.protected Context
getURLOrDefaultInitCtx
(String name) Retrieves a context for resolving the string namename
.protected Context
getURLOrDefaultInitCtx
(Name name) Retrieves a context for resolvingname
.protected void
Initializes the initial context using the supplied environment.Enumerates the names bound in the named context, along with the class names of objects bound to them.Enumerates the names bound in the named context, along with the class names of objects bound to them.listBindings
(String name) Enumerates the names bound in the named context, along with the objects bound to them.listBindings
(Name name) Enumerates the names bound in the named context, along with the objects bound to them.Retrieves the named object.Retrieves the named object.lookupLink
(String name) Retrieves the named object, following links except for the terminal atomic component of the name.lookupLink
(Name name) Retrieves the named object, following links except for the terminal atomic component of the name.void
Binds a name to an object, overwriting any existing binding.void
Binds a name to an object, overwriting any existing binding.removeFromEnvironment
(String propName) Removes an environment property from the environment of this context.void
Binds a new name to the object bound to an old name, and unbinds the old name.void
Binds a new name to the object bound to an old name, and unbinds the old name.void
Unbinds the named object.void
Unbinds the named object.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
InitialLdapContext
Constructs an initial context using no environment properties or connection request controls. Equivalent tonew InitialLdapContext(null, null)
.- Throws:
NamingException
- if a naming exception is encountered
-
InitialLdapContext
Constructs an initial context using environment properties and connection request controls. Seejavax.naming.InitialContext
for a discussion of environment properties.This constructor will not modify its parameters or save references to them, but may save a clone or copy. Caller should not modify mutable keys and values in
environment
after it has been passed to the constructor.connCtls
is used as the underlying context instance's connection request controls. See the class description for details.- Parameters:
environment
- environment used to create the initial DirContext. Null indicates an empty environment.connCtls
- connection request controls for the initial context. If null, no connection request controls are used.- Throws:
NamingException
- if a naming exception is encountered- See Also:
-
-
Method Details
-
extendedOperation
Description copied from interface:LdapContext
Performs an extended operation. This method is used to support LDAPv3 extended operations.- Specified by:
extendedOperation
in interfaceLdapContext
- Parameters:
request
- The non-null request to be performed.- Returns:
- The possibly null response of the operation. null means the operation did not generate any response.
- Throws:
NamingException
- If an error occurred while performing the extended operation.
-
newInstance
Description copied from interface:LdapContext
Creates a new instance of this context initialized using request controls. This method is a convenience method for creating a new instance of this context for the purposes of multithreaded access. For example, if multiple threads want to use different context request controls, each thread may use this method to get its own copy of this context and set/get context request controls without having to synchronize with other threads.The new context has the same environment properties and connection request controls as this context. See the class description for details. Implementations might also allow this context and the new context to share the same network connection or other resources if doing so does not impede the independence of either context.
- Specified by:
newInstance
in interfaceLdapContext
- Parameters:
reqCtls
- The possibly null request controls to use for the new context. If null, the context is initialized with no request controls.- Returns:
- A non-null
LdapContext
instance. - Throws:
NamingException
- If an error occurred while creating the new instance.- See Also:
-
reconnect
Description copied from interface:LdapContext
Reconnects to the LDAP server using the supplied controls and this context's environment.This method is a way to explicitly initiate an LDAP "bind" operation. For example, you can use this method to set request controls for the LDAP "bind" operation, or to explicitly connect to the server to get response controls returned by the LDAP "bind" operation.
This method sets this context's
connCtls
to be its new connection request controls. This context's context request controls are not affected. After this method has been invoked, any subsequent implicit reconnections will be done usingconnCtls
.connCtls
are also used as connection request controls for new context instances derived from this context. These connection request controls are not affected bysetRequestControls()
.Service provider implementors should read the "Service Provider" section in the class description for implementation details.
- Specified by:
reconnect
in interfaceLdapContext
- Parameters:
connCtls
- The possibly null controls to use. If null, no controls are used.- Throws:
NamingException
- If an error occurred while reconnecting.- See Also:
-
getConnectControls
Description copied from interface:LdapContext
Retrieves the connection request controls in effect for this context. The controls are owned by the JNDI implementation and are immutable. Neither the array nor the controls may be modified by the caller.- Specified by:
getConnectControls
in interfaceLdapContext
- Returns:
- A possibly-null array of controls. null means no connect controls have been set for this context.
- Throws:
NamingException
- If an error occurred while getting the request controls.
-
setRequestControls
Description copied from interface:LdapContext
Sets the request controls for methods subsequently invoked on this context. The request controls are owned by the JNDI implementation and are immutable. Neither the array nor the controls may be modified by the caller.This removes any previous request controls and adds
requestControls
for use by subsequent methods invoked on this context. This method does not affect this context's connection request controls.Note that
requestControls
will be in effect until the next invocation ofsetRequestControls()
. You need to explicitly invokesetRequestControls()
withnull
or an empty array to clear the controls if you don't want them to affect the context methods any more. To check what request controls are in effect for this context, usegetRequestControls()
.- Specified by:
setRequestControls
in interfaceLdapContext
- Parameters:
requestControls
- The possibly null controls to use. If null, no controls are used.- Throws:
NamingException
- If an error occurred while setting the request controls.- See Also:
-
getRequestControls
Description copied from interface:LdapContext
Retrieves the request controls in effect for this context. The request controls are owned by the JNDI implementation and are immutable. Neither the array nor the controls may be modified by the caller.- Specified by:
getRequestControls
in interfaceLdapContext
- Returns:
- A possibly-null array of controls. null means no request controls have been set for this context.
- Throws:
NamingException
- If an error occurred while getting the request controls.- See Also:
-
getResponseControls
Description copied from interface:LdapContext
Retrieves the response controls produced as a result of the last method invoked on this context. The response controls are owned by the JNDI implementation and are immutable. Neither the array nor the controls may be modified by the caller.These response controls might have been generated by a successful or failed operation.
When a context method that may return response controls is invoked, response controls from the previous method invocation are cleared.
getResponseControls()
returns all of the response controls generated by LDAP operations used by the context method in the order received from the LDAP server. InvokinggetResponseControls()
does not clear the response controls. You can call it many times (and get back the same controls) until the next context method that may return controls is invoked.- Specified by:
getResponseControls
in interfaceLdapContext
- Returns:
- A possibly null array of controls. If null, the previous method invoked on this context did not produce any controls.
- Throws:
NamingException
- If an error occurred while getting the response controls.
-