Package | Description |
---|---|
netscape.ldap | |
netscape.ldap.beans | |
netscape.ldap.util |
Modifier and Type | Method and Description |
---|---|
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 |
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 |
LDAPBind.bind(LDAPConnection conn)
This method is called by
LDAPConnection when
authenticating. |
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.
|
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
ConnectionPool.close(LDAPConnection ld)
This is our soft close - all we do is mark
the connection as available for others to use.
|
Constructor and Description |
---|
ConnectionPool(int min,
int max,
LDAPConnection ldc)
Constructor for using an existing connection to clone
from.
|