Class DirectoryManager
DirContext
implementations.
This class is an extension of NamingManager. It contains methods
for use by service providers for accessing object factories and
state factories, and for getting continuation contexts for
supporting federation.
DirectoryManager is safe for concurrent access by multiple threads.
Except as otherwise noted,
a Name, Attributes, or environment parameter
passed to any method is owned by the caller.
The implementation will not modify the object or keep a reference
to it, although it may keep a reference to a clone or copy.
- Since:
- 1.3
- See Also:
-
Field Summary
Fields declared in class NamingManager
CPE -
Method Summary
Modifier and TypeMethodDescriptionstatic DirContextCreates a context in which to continue aDirContextoperation.static ObjectgetObjectInstance(Object refInfo, Name name, Context nameCtx, Hashtable<?, ?> environment, Attributes attrs) Creates an instance of an object for the specified object, attributes, and environment.static DirStateFactory.ResultgetStateToBind(Object obj, Name name, Context nameCtx, Hashtable<?, ?> environment, Attributes attrs) Retrieves the state of an object for binding when given the original object and its attributes.Methods declared in class NamingManager
getContinuationContext, getInitialContext, getObjectInstance, getStateToBind, getURLContext, hasInitialContextFactoryBuilder, setInitialContextFactoryBuilder, setObjectFactoryBuilderModifier and TypeMethodDescriptionstatic ContextCreates a context in which to continue a context operation.static ContextgetInitialContext(Hashtable<?, ?> env) Creates an initial context using the specified environment properties.static ObjectgetObjectInstance(Object refInfo, Name name, Context nameCtx, Hashtable<?, ?> environment) Creates an instance of an object for the specified object and environment.static ObjectgetStateToBind(Object obj, Name name, Context nameCtx, Hashtable<?, ?> environment) Retrieves the state of an object for binding.static ContextgetURLContext(String scheme, Hashtable<?, ?> environment) Creates a context for the given URL scheme id.static booleanDetermines whether an initial context factory builder has been set.static voidSets the InitialContextFactory builder to be builder.static voidThe ObjectFactoryBuilder determines the policy used when trying to load object factories.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()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.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(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 voidwait(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.
-
Method Details
-
getContinuationDirContext
public static DirContext getContinuationDirContext(CannotProceedException cpe) throws NamingException Creates a context in which to continue aDirContextoperation. Operates just likeNamingManager.getContinuationContext(), only the continuation context returned is aDirContext.- Parameters:
cpe- The non-null exception that triggered this continuation.- Returns:
- A non-null
DirContextobject for continuing the operation. - Throws:
NamingException- If a naming exception occurred.- See Also:
-
getObjectInstance
public static Object getObjectInstance(Object refInfo, Name name, Context nameCtx, Hashtable<?, ?> environment, Attributes attrs) throws ExceptionCreates an instance of an object for the specified object, attributes, and environment.This method is the same as
NamingManager.getObjectInstanceexcept for the following differences:-
It accepts an
Attributesparameter that contains attributes associated with the object. TheDirObjectFactorymight use these attributes to save having to look them up from the directory. -
The object factories tried must implement either
ObjectFactoryorDirObjectFactory. If it implementsDirObjectFactory,DirObjectFactory.getObjectInstance()is used, otherwise,ObjectFactory.getObjectInstance()is used.
DirContextinterface should use this method, notNamingManager.getObjectInstance().- Parameters:
refInfo- The possibly null object for which to create an object.name- The name of this object relative tonameCtx. Specifying a name is optional; if it is omitted,nameshould be null.nameCtx- The context relative to which thenameparameter is specified. If null,nameis relative to the default initial context.environment- The possibly null environment to be used in the creation of the object factory and the object.attrs- The possibly null attributes associated with refInfo. This might not be the complete set of attributes for refInfo; you might be able to read more attributes from the directory.- Returns:
- An object created using
refInfoandattrs; orrefInfoif an object cannot be created by a factory. - Throws:
NamingException- If a naming exception was encountered while attempting to get a URL context, or if one of the factories accessed throws a NamingException.Exception- If one of the factories accessed throws an exception, or if an error was encountered while loading and instantiating the factory and object classes. A factory should only throw an exception if it does not want other factories to be used in an attempt to create an object. SeeDirObjectFactory.getObjectInstance().- Since:
- 1.3
- See Also:
-
It accepts an
-
getStateToBind
public static DirStateFactory.Result getStateToBind(Object obj, Name name, Context nameCtx, Hashtable<?, ?> environment, Attributes attrs) throws NamingExceptionRetrieves the state of an object for binding when given the original object and its attributes.This method is like
NamingManager.getStateToBindexcept for the following differences:- It accepts an
Attributesparameter containing attributes that were passed to theDirContext.bind()method. - It returns a non-null
DirStateFactory.Resultinstance containing the object to be bound, and the attributes to accompany the binding. Either the object or the attributes may be null. -
The state factories tried must each implement either
StateFactoryorDirStateFactory. If it implementsDirStateFactory, thenDirStateFactory.getStateToBind()is called; otherwise,StateFactory.getStateToBind()is called.
DirContextinterface should use this method, notNamingManager.getStateToBind().See NamingManager.getStateToBind() for a description of how the list of state factories to be tried is determined.
The object returned by this method is owned by the caller. The implementation will not subsequently modify it. It will contain either a new
Attributesobject that is likewise owned by the caller, or a reference to the originalattrsparameter.- Parameters:
obj- The non-null object for which to get state to bind.name- The name of this object relative tonameCtx, or null if no name is specified.nameCtx- The context relative to which thenameparameter is specified, or null ifnameis relative to the default initial context.environment- The possibly null environment to be used in the creation of the state factory and the object's state.attrs- The possibly null Attributes that is to be bound with the object.- Returns:
- A non-null DirStateFactory.Result containing
the object and attributes to be bound.
If no state factory returns a non-null answer, the result will contain
the object (
obj) itself with the original attributes. - Throws:
NamingException- If a naming exception was encountered while using the factories. A factory should only throw an exception if it does not want other factories to be used in an attempt to create an object. SeeDirStateFactory.getStateToBind().- Since:
- 1.3
- See Also:
- It accepts an
-