Uses of Class
netscape.ldap.LDAPControl
-
Packages that use LDAPControl Package Description <Unnamed> netscape.ldap netscape.ldap.controls netscape.ldap.util -
-
Uses of LDAPControl in <Unnamed>
Fields in <Unnamed> declared as LDAPControl Modifier and Type Field Description protected static LDAPControlLDAPTool. m_proxyControlprotected static LDAPControlLDAPTool. m_proxyControlprotected static LDAPControlLDAPTool. m_proxyControl -
Uses of LDAPControl in netscape.ldap
Methods in netscape.ldap that return LDAPControl Modifier and Type Method Description protected static LDAPControlLDAPControl. createControl(java.lang.String oid, boolean critical, byte[] value)Returns aLDAPControlobject instantiated by the Class associated byLDAPControl.registerto the oid.LDAPControl[]LDAPConstraints. getClientControls()Returns any client controls to be applied by the client to LDAP operations.LDAPControl[]LDAPMessage. getControls()Retrieves list of controls.LDAPControl[]LDAPConnection. getResponseControls()Returns an array of the latest controls (if any) from server.LDAPControl[]LDAPSearchResults. getResponseControls()Returns the controls returned with this search result.LDAPControl[]LDAPv3. getResponseControls()Returns an array of the latest controls (if any) from the server.LDAPControl[]LDAPConstraints. getServerControls()Returns any server controls to be applied by the server to LDAP operations.static LDAPControl[]LDAPControl. newInstance(byte[] data)Instantiates all of the controls contained within the LDAP message fragment specified by data and returns them in anLDAPControlarray.Methods in netscape.ldap with parameters of type LDAPControl Modifier and Type Method Description voidLDAPConstraints. setClientControls(LDAPControl control)Sets a client control for LDAP operations.voidLDAPConstraints. setClientControls(LDAPControl[] controls)Sets an array of client controls for LDAP operations.voidLDAPConstraints. setServerControls(LDAPControl control)Sets a server control for LDAP operations.voidLDAPConstraints. setServerControls(LDAPControl[] controls)Sets an array of server controls for LDAP operations. -
Uses of LDAPControl in netscape.ldap.controls
Subclasses of LDAPControl in netscape.ldap.controls Modifier and Type Class Description classLDAPEntryChangeControlRepresents an LDAP v3 server control that specifies information about a change to an entry in the directory.classLDAPPasswordExpiredControlRepresents an LDAP v3 server control that may be returned if a password has expired, and password policy is enabled on the server.classLDAPPasswordExpiringControlRepresents an LDAP v3 server control that may be returned if a password is about to expire, and password policy is enabled on the server.classLDAPPersistSearchControlRepresents an LDAP v3 server control that specifies a persistent search (an ongoing search operation), which allows your LDAP client to get notification of changes to the directory.classLDAPProxiedAuthControlRepresents an LDAP v3 server control that specifies that you want the server to use the specified DN's identity for this operation.classLDAPSortControlRepresents an LDAP v3 server control that specifies that you want the server to return sorted search results.classLDAPVirtualListControlRepresents control data for returning paged results from a search.classLDAPVirtualListResponseRepresents control data for returning paged results from a search.Methods in netscape.ldap.controls with parameters of type LDAPControl Modifier and Type Method Description static java.lang.StringLDAPPasswordExpiredControl. parseResponse(LDAPControl[] controls)Deprecated.LDAPPasswordExpiredControl controls are now automatically instantiated.static java.lang.StringLDAPPasswordExpiringControl. parseResponse(LDAPControl[] controls)Deprecated.LDAPPasswordExpiringControl controls are now automatically instantiated.static LDAPEntryChangeControlLDAPPersistSearchControl. parseResponse(LDAPControl[] controls)Deprecated.LDAPEntryChangeControl controls are now automatically instantiated.static java.lang.StringLDAPSortControl. parseResponse(LDAPControl[] controls, int[] results)Deprecated.LDAPSortControl response controls are now automatically instantiated.static LDAPVirtualListResponseLDAPVirtualListResponse. parseResponse(LDAPControl[] controls)Deprecated.LDAPVirtualListResponse controls are now automatically instantiated. -
Uses of LDAPControl in netscape.ldap.util
Methods in netscape.ldap.util that return LDAPControl Modifier and Type Method Description LDAPControl[]LDIFBaseContent. getControls()Retrieves the list of controls specified in the content of the LDIF record, if anyLDAPControl[]LDIFContent. getControls()Retrieves the list of controls specified in the content of the LDIF record, if anyLDAPControl[]LDIFRecord. getControls()Retrieves the list of controls specified in the content of the LDIF record, if any.protected LDAPControlLDIF. parse_control_spec(java.lang.String line)Parses the specification of a control
A control looks line one of the following:
control: 1.2.3.4.10.210
control: 1.2.3.4.10.210 true
control: 1.2.3.4.10.210 true: someASCIIvalue
control: 1.2.3.4.10.210: someASCIIvalue
control: 1.2.3.4.10.210 true:: 44GK44GM44GV44KP44KJ
control: 1.2.3.4.10.210:: 44GK44GM44GV44KP44KJ
control: 1.2.3.4.10.210 true:< file:///usr/local/directory/cont.dta
control: 1.2.3.4.10.210:< file:///usr/local/directory/cont.dtaMethods in netscape.ldap.util with parameters of type LDAPControl Modifier and Type Method Description voidLDIFBaseContent. setControls(LDAPControl[] controls)Sets the list of controlsvoidLDIFContent. setControls(LDAPControl[] controls)Sets the list of controls
-