Package | Description |
---|---|
org.opends.server.controls |
Contains classes that represent specific LDAP controls and their values.
|
org.opends.server.protocols.ldap |
Contains the implementation for the Directory Server connection handler that is responsible for interacting with
clients using LDAPv3.
|
org.opends.server.types |
Contains implementations for a number of Directory Server data types.
|
Modifier and Type | Method and Description |
---|---|
LDAPFilter |
LDAPAssertionRequestControl.getRawFilter()
Retrieves the raw, unparsed filter from the request control.
|
Constructor and Description |
---|
LDAPAssertionRequestControl(boolean isCritical,
LDAPFilter rawFilter)
Creates a new instance of this LDAP assertion request control with the provided information.
|
Modifier and Type | Method and Description |
---|---|
static LDAPFilter |
LDAPFilter.decode(String filterString)
Decodes the provided string into an LDAP search filter.
|
static LDAPFilter |
LDAPFilter.objectClassPresent()
Returns the
objectClass presence filter (objectClass=*) . |
Modifier and Type | Method and Description |
---|---|
static LDAPFilter |
RawFilter.createANDFilter(ArrayList<RawFilter> filterComponents)
Creates a new AND search filter with the provided filter components.
|
static LDAPFilter |
RawFilter.createApproximateFilter(String attributeType,
ByteString assertionValue)
Creates a new approximate search filter with the provided information.
|
static LDAPFilter |
RawFilter.createEqualityFilter(String attributeType,
ByteString assertionValue)
Creates a new equality search filter with the provided information.
|
static LDAPFilter |
RawFilter.createExtensibleFilter(String matchingRuleID,
String attributeType,
ByteString assertionValue,
boolean dnAttributes)
Creates a new extensible matching search filter with the provided information.
|
static LDAPFilter |
RawFilter.createGreaterOrEqualFilter(String attributeType,
ByteString assertionValue)
Creates a new greater or equal search filter with the provided information.
|
static LDAPFilter |
RawFilter.createLessOrEqualFilter(String attributeType,
ByteString assertionValue)
Creates a new less or equal search filter with the provided information.
|
static LDAPFilter |
RawFilter.createNOTFilter(RawFilter notComponent)
Creates a new NOT search filter with the provided filter component.
|
static LDAPFilter |
RawFilter.createORFilter(ArrayList<RawFilter> filterComponents)
Creates a new OR search filter with the provided filter components.
|
static LDAPFilter |
RawFilter.createPresenceFilter(String attributeType)
Creates a new presence search filter with the provided attribute type.
|
static LDAPFilter |
RawFilter.createSubstringFilter(String attributeType,
ByteString subInitialElement,
ArrayList<ByteString> subAnyElements,
ByteString subFinalElement)
Creates a new substring search filter with the provided information.
|
static LDAPFilter |
RawFilter.decode(Asn1Reader reader)
Decodes the elements from the provided ASN.1 reader as a raw search filter.
|
Copyright 2010-2020 ForgeRock AS.