Package netscape.ldap.controls
Class LDAPProxiedAuthControl
- java.lang.Object
-
- netscape.ldap.LDAPControl
-
- netscape.ldap.controls.LDAPProxiedAuthControl
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
public class LDAPProxiedAuthControl extends LDAPControl
Represents an LDAP v3 server control that specifies that you want the server to use the specified DN's identity for this operation. (The OID for this control is 2.16.840.1.113730.3.4.12.)You can include the control in any request by constructing an
LDAPSearchConstraintsobject and calling thesetServerControlsmethod. You can then pass thisLDAPSearchConstraintsobject to thesearchor other request method of anLDAPConnectionobject.For example:
... LDAPConnection ld = new LDAPConnection(); try { // Connect to server. ld.connect( 3, hostname, portnumber, "", "" ); // Create a "critical" proxied auth server control using // the DN "uid=charlie,ou=people,o=acme.com". LDAPProxiedAuthControl ctrl = new LDAPProxiedAuthControl( "uid=charlie,ou=people,o=acme.com", true ); // Create search constraints to use that control. LDAPSearchConstraints cons = new LDAPSearchConstraints(); cons.setServerControls( sortCtrl ); // Send the search request. LDAPSearchResults res = ld.search( "o=Airius.com", LDAPv3.SCOPE_SUB, "(cn=Barbara*)", null, false, cons ); ...- Version:
- 1.0
- See Also:
LDAPControl,LDAPConstraints,LDAPSearchConstraints,LDAPConstraints.setServerControls(LDAPControl), Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringPROXIEDAUTHREQUEST-
Fields inherited from class netscape.ldap.LDAPControl
m_critical, m_value, MANAGEDSAIT, PWEXPIRED, PWEXPIRING
-
-
Constructor Summary
Constructors Constructor Description LDAPProxiedAuthControl(java.lang.String dn, boolean critical)Constructs anLDAPProxiedAuthControlobject with a DN to use as identity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()Return a string representation of the control for debugging-
Methods inherited from class netscape.ldap.LDAPControl
clone, createControl, flattenBER, getID, getValue, isCritical, lookupControlClass, newInstance, register
-
-
-
-
Field Detail
-
PROXIEDAUTHREQUEST
public static final java.lang.String PROXIEDAUTHREQUEST
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
LDAPProxiedAuthControl
public LDAPProxiedAuthControl(java.lang.String dn, boolean critical)Constructs anLDAPProxiedAuthControlobject with a DN to use as identity.- Parameters:
dn- DN to use as identity for execution of a requestcritical-trueif the LDAP operation should be discarded when the server does not support this control (in other words, this control is critical to the LDAP operation)- See Also:
LDAPControl
-
-
Method Detail
-
toString
public java.lang.String toString()
Description copied from class:LDAPControlReturn a string representation of the control for debugging- Overrides:
toStringin classLDAPControl- Returns:
- a string representation of the control.
-
-