Uses of Interface
javax.naming.ldap.Control
Packages that use Control
-
Uses of Control in javax.naming.ldap
Classes in javax.naming.ldap that implement ControlModifier and TypeClassDescriptionclass
This class provides a basic implementation of theControl
interface.class
Requests that referral and other special LDAP objects be manipulated as normal LDAP objects.class
Requests that the results of a search operation be returned by the LDAP server in batches of a specified size.class
Indicates the end of a batch of search results.class
Requests that the results of a search operation be sorted by the LDAP server before being returned.class
Indicates whether the requested sort of search results was successful or not.Methods in javax.naming.ldap that return ControlModifier and TypeMethodDescriptionControl[]
InitialLdapContext.getConnectControls()
Control[]
LdapContext.getConnectControls()
Retrieves the connection request controls in effect for this context.abstract Control
ControlFactory.getControlInstance(Control ctl)
Creates a control using this control factory.static Control
ControlFactory.getControlInstance(Control ctl, Context ctx, Hashtable<?,?> env)
Creates a control using known control factories.Control[]
HasControls.getControls()
Retrieves an array ofControl
s from the object that implements this interface.Control[]
InitialLdapContext.getRequestControls()
Control[]
LdapContext.getRequestControls()
Retrieves the request controls in effect for this context.Control[]
InitialLdapContext.getResponseControls()
Control[]
LdapContext.getResponseControls()
Retrieves the response controls produced as a result of the last method invoked on this context.Methods in javax.naming.ldap with parameters of type ControlModifier and TypeMethodDescriptionabstract Control
ControlFactory.getControlInstance(Control ctl)
Creates a control using this control factory.static Control
ControlFactory.getControlInstance(Control ctl, Context ctx, Hashtable<?,?> env)
Creates a control using known control factories.abstract Context
LdapReferralException.getReferralContext(Hashtable<?,?> env, Control[] reqCtls)
Retrieves the context at which to continue the method using request controls and environment properties.InitialLdapContext.newInstance(Control[] reqCtls)
LdapContext.newInstance(Control[] requestControls)
Creates a new instance of this context initialized using request controls.void
void
Reconnects to the LDAP server using the supplied controls and this context's environment.void
InitialLdapContext.setRequestControls(Control[] requestControls)
void
LdapContext.setRequestControls(Control[] requestControls)
Sets the request controls for methods subsequently invoked on this context.Constructors in javax.naming.ldap with parameters of type ControlModifierConstructorDescriptionInitialLdapContext(Hashtable<?,?> environment, Control[] connCtls)
Constructs an initial context using environment properties and connection request controls.