Uses of Class
netscape.ldap.LDAPConstraints

Packages that use LDAPConstraints
netscape.ldap   
 

Uses of LDAPConstraints in netscape.ldap
 

Subclasses of LDAPConstraints in netscape.ldap
 class LDAPSearchConstraints
          Represents a set of search preferences.
 

Methods in netscape.ldap that return LDAPConstraints
 LDAPConstraints LDAPConnection.getConstraints()
          Returns the set of constraints that apply to all operations performed through this connection (unless you specify a different set of constraints when calling a method).
 

Methods in netscape.ldap with parameters of type LDAPConstraints
 void LDAPv2.add(LDAPEntry entry, LDAPConstraints cons)
          Adds an entry to the directory.
 void LDAPConnection.add(LDAPEntry entry, LDAPConstraints cons)
          Adds an entry to the directory and allows you to specify preferences for this LDAP add operation by using an LDAPConstraints object.
 LDAPResponseListener LDAPAsynchronousConnection.add(LDAPEntry entry, LDAPResponseListener listener, LDAPConstraints cons)
          Adds an entry to the directory and allows you to specify constraints for this LDAP add operation by using an LDAPConstraints object.
 LDAPResponseListener LDAPConnection.add(LDAPEntry entry, LDAPResponseListener listener, LDAPConstraints cons)
          Adds an entry to the directory and allows you to specify constraints for this LDAP add operation by using an LDAPConstraints object.
 void LDAPConnection.authenticate(int version, java.lang.String dn, java.lang.String passwd, LDAPConstraints cons)
          Authenticates to the LDAP server (to which you are currently connected) using the specified name and password, and requesting that the server use at least the specified protocol version.
 LDAPResponseListener LDAPConnection.authenticate(int version, java.lang.String dn, java.lang.String passwd, LDAPResponseListener listener, LDAPConstraints cons)
          Authenticates to the LDAP server (that the object is currently connected to) using the specified name and password and allows you to specify constraints for this LDAP add operation by using an LDAPConstraints object.
 void LDAPConnection.authenticate(java.lang.String dn, java.lang.String passwd, LDAPConstraints cons)
          Authenticates to the LDAP server (to which you are currently connected) using the specified name and password.
 void LDAPConnection.bind(int version, java.lang.String dn, java.lang.String passwd, LDAPConstraints cons)
          Authenticates to the LDAP server (to which you are currently connected) using the specified name and password, and requesting that the server use at least the specified protocol version.
 LDAPResponseListener LDAPConnection.bind(int version, java.lang.String dn, java.lang.String passwd, LDAPResponseListener listener, LDAPConstraints cons)
          Authenticates to the LDAP server (to which the object is currently connected) using the specified name and password and allows you to specify constraints for this LDAP add operation by using an LDAPConstraints object.
 void LDAPConnection.bind(java.lang.String dn, java.lang.String passwd, LDAPConstraints cons)
          Authenticates to the LDAP server (to which you are currently connected) using the specified name and password.
 LDAPResponseListener LDAPAsynchronousConnection.bind(java.lang.String dn, java.lang.String passwd, LDAPResponseListener listener, LDAPConstraints cons)
          Authenticates to the LDAP server (that the object is currently connected to) using the specified name and password and allows you to specify constraints for this LDAP add operation by using an LDAPConstraints object.
 LDAPResponseListener LDAPConnection.bind(java.lang.String dn, java.lang.String passwd, LDAPResponseListener listener, LDAPConstraints cons)
          Authenticates to the LDAP server (to which the object is currently connected) using the specified name and password and allows you to specify constraints for this LDAP add operation by using an LDAPConstraints object.
 boolean LDAPv2.compare(java.lang.String DN, LDAPAttribute attr, LDAPConstraints cons)
          Compares the given entry's attribute value to the specified attribute value.
 boolean LDAPConnection.compare(java.lang.String DN, LDAPAttribute attr, LDAPConstraints cons)
           
 LDAPResponseListener LDAPAsynchronousConnection.compare(java.lang.String dn, LDAPAttribute attr, LDAPResponseListener listener, LDAPConstraints cons)
          Compares an attribute value with one in the directory.
 LDAPResponseListener LDAPConnection.compare(java.lang.String dn, LDAPAttribute attr, LDAPResponseListener listener, LDAPConstraints cons)
          Compare an attribute value with one in the directory.
 void LDAPConnection.connect(int version, java.lang.String host, int port, java.lang.String dn, java.lang.String passwd, LDAPConstraints cons)
          Connects to the specified host and port and uses the specified DN and password to authenticate to the server, with the specified LDAP protocol version.
 void LDAPConnection.connect(java.lang.String host, int port, java.lang.String dn, java.lang.String passwd, LDAPConstraints cons)
          Connects to the specified host and port and uses the specified DN and password to authenticate to the server.
 void LDAPv2.delete(java.lang.String DN, LDAPConstraints cons)
          Removes an entry from the directory.
 void LDAPConnection.delete(java.lang.String DN, LDAPConstraints cons)
          Deletes the entry for the specified DN from the directory and allows you to specify preferences for this LDAP delete operation by using an LDAPConstraints object.
 LDAPResponseListener LDAPAsynchronousConnection.delete(java.lang.String dn, LDAPResponseListener listener, LDAPConstraints cons)
          Deletes the entry for the specified DN from the directory.
 LDAPResponseListener LDAPConnection.delete(java.lang.String dn, LDAPResponseListener listener, LDAPConstraints cons)
          Deletes the entry for the specified DN from the directory.
 LDAPExtendedOperation LDAPConnection.extendedOperation(LDAPExtendedOperation op, LDAPConstraints cons)
          Performs an extended operation on the directory.
 void LDAPConnection.modify(java.lang.String DN, LDAPModification[] mods, LDAPConstraints cons)
          Makes a set of changes to an existing entry in the directory and allows you to specify preferences for this LDAP modify operation by using an LDAPConstraints object.
 void LDAPv2.modify(java.lang.String DN, LDAPModification mod, LDAPConstraints cons)
          Modifies an attribute of a directory entry.
 void LDAPConnection.modify(java.lang.String DN, LDAPModification mod, LDAPConstraints cons)
          Makes a single change to an existing entry in the directory and allows you to specify preferences for this LDAP modify operation by using an LDAPConstraints object.
 LDAPResponseListener LDAPAsynchronousConnection.modify(java.lang.String dn, LDAPModification mod, LDAPResponseListener listener, LDAPConstraints cons)
          Makes a single change to an existing entry in the directory.
 LDAPResponseListener LDAPConnection.modify(java.lang.String dn, LDAPModification mod, LDAPResponseListener listener, LDAPConstraints cons)
          Makes a single change to an existing entry in the directory.
 void LDAPv2.modify(java.lang.String DN, LDAPModificationSet mods, LDAPConstraints cons)
          Modifies the attributes of a directory entry.
 void LDAPConnection.modify(java.lang.String DN, LDAPModificationSet mods, LDAPConstraints cons)
          Makes a set of changes to an existing entry in the directory and allows you to specify preferences for this LDAP modify operation by using an LDAPConstraints object.
 LDAPResponseListener LDAPAsynchronousConnection.modify(java.lang.String dn, LDAPModificationSet mods, LDAPResponseListener listener, LDAPConstraints cons)
          Makes a set of changes to an existing entry in the directory.
 LDAPResponseListener LDAPConnection.modify(java.lang.String dn, LDAPModificationSet mods, LDAPResponseListener listener, LDAPConstraints cons)
          Makes a set of changes to an existing entry in the directory.
 void LDAPv2.rename(java.lang.String DN, java.lang.String newRDN, boolean deleteOldRDN, LDAPConstraints cons)
          Changes the name of an entry in the directory.
 void LDAPConnection.rename(java.lang.String DN, java.lang.String newRDN, boolean deleteOldRDN, LDAPConstraints cons)
          Renames an existing entry in the directory.
 LDAPResponseListener LDAPAsynchronousConnection.rename(java.lang.String dn, java.lang.String newRdn, boolean deleteOldRdn, LDAPResponseListener listener, LDAPConstraints cons)
          Renames an existing entry in the directory.
 LDAPResponseListener LDAPConnection.rename(java.lang.String dn, java.lang.String newRdn, boolean deleteOldRdn, LDAPResponseListener listener, LDAPConstraints cons)
          Renames an existing entry in the directory.
 void LDAPConnection.rename(java.lang.String DN, java.lang.String newRDN, java.lang.String newParentDN, boolean deleteOldRDN, LDAPConstraints cons)
          Renames an existing entry in the directory and (optionally) changes the location of the entry in the directory tree.
 void LDAPv3.rename(java.lang.String DN, java.lang.String newRDN, java.lang.String newParentDN, boolean deleteOldRDN, LDAPConstraints cons)
          Renames and moves an entry in the directory.
 void LDAPConnection.setConstraints(LDAPConstraints cons)
          Set the default constraint set for all operations.