Uses of Class
netscape.ldap.LDAPConnection

Packages that use LDAPConnection
netscape.ldap   
netscape.ldap.beans   
netscape.ldap.util   
 

Uses of LDAPConnection in netscape.ldap
 

Methods in netscape.ldap with parameters of type LDAPConnection
 void LDAPSchemaElement.add(LDAPConnection ld)
          Adds the current object class, attribute type, or matching rule definition to the schema at the root DSE.
 void LDAPSchemaElement.add(LDAPConnection ld, java.lang.String dn)
          Adds the current object class, attribute type, or matching rule definition to the schema.
 void LDAPBind.bind(LDAPConnection conn)
          This method is called by LDAPConnection when authenticating.
 void LDAPSaslBind.bind(LDAPConnection ldc)
          Authenticates to the LDAP server (that the object is currently connected to) using the parameter that were provided to the constructor.
 void LDAPSchema.fetchSchema(LDAPConnection ld)
          Retrieve the entire schema from the root of a Directory Server.
 void LDAPSchema.fetchSchema(LDAPConnection ld, java.lang.String dn)
          Retrieve the schema for a specific entry.
 void LDAPSchemaElement.modify(LDAPConnection ld, LDAPSchemaElement newValue)
          Replaces a single value of the object class, attribute type, or matching rule definition in the schema at the root DSE.
 void LDAPSchemaElement.modify(LDAPConnection ld, LDAPSchemaElement newValue, java.lang.String dn)
          Replaces a single value of the object class, attribute type, or matching rule definition in the schema.
 void LDAPSchemaElement.remove(LDAPConnection ld)
          Removes the current object class, attribute type, or matching rule definition from the schema at the root DSE.
 void LDAPSchemaElement.remove(LDAPConnection ld, java.lang.String dn)
          Removes the current object class, attribute type, or matching rule definition from the schema.
protected  void LDAPSchemaElement.update(LDAPConnection ld, int op, LDAPAttribute[] attrs, java.lang.String dn)
          Adds, removes or modifies the definition from a Directory.
protected  void LDAPSchemaElement.update(LDAPConnection ld, int op, LDAPAttribute attr, java.lang.String dn)
          Adds, removes or modifies the definition from a Directory.
protected  void LDAPSchemaElement.update(LDAPConnection ld, int op, java.lang.String name, java.lang.String dn)
          Adds, removes or modifies the definition from a Directory.
protected  void LDAPMatchingRuleSchema.update(LDAPConnection ld, int op, java.lang.String name, java.lang.String dn)
          Adds, removes or modifies the definition from a Directory.
 

Uses of LDAPConnection in netscape.ldap.beans
 

Methods in netscape.ldap.beans with parameters of type LDAPConnection
protected  void LDAPBasePropertySupport.connect(LDAPConnection conn, java.lang.String host, int port)
          Sets up basic connection privileges for Communicator if necessary, and connects
protected  void LDAPBasePropertySupport.setDefaultReferralCredentials(LDAPConnection conn)
           
 

Uses of LDAPConnection in netscape.ldap.util
 

Methods in netscape.ldap.util that return LDAPConnection
 LDAPConnection ConnectionPool.getConnection()
          Gets a connection from the pool If no connections are available, the pool will be extended if the number of connections is less than the maximum; if the pool cannot be extended, the method blocks until a free connection becomes available.
 LDAPConnection ConnectionPool.getConnection(int timeout)
          Gets a connection from the pool within a time limit.
protected  LDAPConnection ConnectionPool.getConnFromPool()
          Gets a connection from the pool If no connections are available, the pool will be extended if the number of connections is less than the maximum; if the pool cannot be extended, the method returns null.
 

Methods in netscape.ldap.util with parameters of type LDAPConnection
 void ConnectionPool.close(LDAPConnection ld)
          This is our soft close - all we do is mark the connection as available for others to use.
 

Constructors in netscape.ldap.util with parameters of type LDAPConnection
ConnectionPool(int min, int max, LDAPConnection ldc)
          Constructor for using an existing connection to clone from.