Package | Description |
---|---|
<Unnamed> | |
netscape.ldap | |
netscape.ldap.util |
Modifier and Type | Method and Description |
---|---|
protected static boolean |
LDAPSearch.isSchemaEntry(LDAPEntry entry) |
Modifier and Type | Method and Description |
---|---|
LDAPEntry |
LDAPSearchResult.getEntry()
Returns the entry of a server search response.
|
LDAPEntry |
LDAPSearchResults.next()
Returns the next LDAP entry from the search results
and throws an exception if the next result is a referral, or
if a sizelimit or timelimit error occurred.
|
static LDAPEntry |
LDAPConnection.read(LDAPUrl toGet)
Reads the entry specified by the LDAP URL.
|
LDAPEntry |
LDAPConnection.read(java.lang.String DN)
Reads the entry for the specified distiguished name (DN) and retrieves all
attributes for the entry.
|
LDAPEntry |
LDAPv2.read(java.lang.String DN)
Read the entry corresponding to the specified distinguished name (DN).
|
LDAPEntry |
LDAPConnection.read(java.lang.String DN,
LDAPSearchConstraints cons)
Reads the entry for the specified distiguished name (DN) and retrieves all
attributes for the entry.
|
LDAPEntry |
LDAPConnection.read(java.lang.String DN,
java.lang.String[] attrs)
Reads the entry for the specified distinguished name (DN) and
retrieves only the specified attributes from the entry.
|
LDAPEntry |
LDAPv2.read(java.lang.String DN,
java.lang.String[] attrs)
Read the entry corresponding to the specified distinguished name (DN),
and retrieve only the specified attributes.
|
LDAPEntry |
LDAPConnection.read(java.lang.String DN,
java.lang.String[] attrs,
LDAPSearchConstraints cons) |
LDAPEntry |
LDAPv2.read(java.lang.String DN,
java.lang.String[] attrs,
LDAPSearchConstraints cons)
Read the entry corresponding to the specified distinguished name (DN),
and retrieve only the specified attributes.
|
Modifier and Type | Method and Description |
---|---|
void |
LDAPConnection.add(LDAPEntry entry)
Adds an entry to the directory.
|
void |
LDAPv2.add(LDAPEntry entry)
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. |
void |
LDAPv2.add(LDAPEntry entry,
LDAPConstraints cons)
Adds an entry to the directory.
|
LDAPResponseListener |
LDAPConnection.add(LDAPEntry entry,
LDAPResponseListener listener)
Adds an entry to the directory.
|
LDAPResponseListener |
LDAPAsynchronousConnection.add(LDAPEntry entry,
LDAPResponseListener listener)
Adds an entry to the directory.
|
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. |
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. |
void |
LDAPConnection.add(LDAPEntry entry,
LDAPSearchConstraints cons)
Deprecated.
Please use the method signature where
cons is
LDAPConstraints instead of LDAPSearchConstraints |
protected void |
LDAPSchema.initialize(LDAPEntry entry)
Extract all schema elements from subschema entry
|
boolean |
LDAPEntryComparator.isGreater(LDAPEntry greater,
LDAPEntry less)
Specifies the algorithm used to
compare entries when sorting search results.
|
boolean |
LDAPCompareAttrNames.isGreater(LDAPEntry greater,
LDAPEntry less)
Returns
true if the value of the attribute in the first entry is greater
than the value of the attribute in the second entry. |
Constructor and Description |
---|
LDAPSchema(LDAPEntry entry) |
Modifier and Type | Method and Description |
---|---|
void |
LDAPWriter.printEntry(LDAPEntry entry)
The main method of LDAPWriter.
|
void |
LDAPWriter.printSchema(LDAPEntry entry)
Default schema writer - assumes an ordinary entry
|
void |
DSMLWriter.printSchema(LDAPEntry entry)
Prints the schema from an entry containing subschema
entry entry containing schema definitions
|