| Package | Description |
|---|---|
| org.apache.directory.ldap.client.api.search | |
| org.apache.directory.ldap.client.template |
| Modifier and Type | Class and Description |
|---|---|
class |
MatchingRuleAssertionFilterBuilder |
| Modifier and Type | Method and Description |
|---|---|
static FilterBuilder |
FilterBuilder.and(FilterBuilder... filters)
Returns a new FilterBuilder that will
& together all of the
supplied filters. |
static FilterBuilder |
FilterBuilder.approximatelyEqual(String attribute,
String value)
Returns a new FilterBuilder for testing the approximate equality of an
attribute.
|
static FilterBuilder |
FilterBuilder.contains(String attribute,
String... parts)
Returns a new FilterBuilder that will construct a SubString filter, with zero to N any parts,
but no initial or final parts.
|
static FilterBuilder |
FilterBuilder.endsWith(String attribute,
String... parts)
Returns a new FilterBuilder that will construct a SubString filter, with an initial part,
and zero to N any parts, but no final part.
|
static FilterBuilder |
FilterBuilder.equal(String attribute,
String value)
Returns a new FilterBuilder for testing equality of an attribute.
|
static FilterBuilder |
FilterBuilder.greaterThanOrEqual(String attribute,
String value)
Returns a new FilterBuilder for testing lexicographical greater than.
|
static FilterBuilder |
FilterBuilder.lessThanOrEqual(String attribute,
String value)
Returns a new FilterBuilder for testing lexicographical less than.
|
static FilterBuilder |
FilterBuilder.not(FilterBuilder builder)
Returns a new FilterBuilder for negating another filter.
|
static FilterBuilder |
FilterBuilder.or(FilterBuilder... builders)
Returns a new FilterBuilder that will
| together all of the
supplied filters. |
static FilterBuilder |
FilterBuilder.present(String attribute)
Returns a new FilterBuilder for testing the presence of an attributes.
|
static FilterBuilder |
FilterBuilder.startsWith(String attribute,
String... parts)
Returns a new FilterBuilder that will construct a SubString filter, with an initial part,
and zero to N any part, but no final part.
|
static FilterBuilder |
FilterBuilder.substring(String attribute,
String... parts)
Returns a new FilterBuilder that will construct a SubString filter, with a initial part,
zero to N any parts, and a final part.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterBuilder |
FilterBuilder.and(FilterBuilder... filters)
Returns a new FilterBuilder that will
& together all of the
supplied filters. |
static FilterBuilder |
FilterBuilder.not(FilterBuilder builder)
Returns a new FilterBuilder for negating another filter.
|
static FilterBuilder |
FilterBuilder.or(FilterBuilder... builders)
Returns a new FilterBuilder that will
| together all of the
supplied filters. |
| Modifier and Type | Method and Description |
|---|---|
org.apache.directory.api.ldap.model.message.SearchRequest |
ModelFactory.newSearchRequest(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
all normal attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
ModelFactoryImpl.newSearchRequest(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
all normal attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
LdapConnectionTemplate.newSearchRequest(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
all normal attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
ModelFactory.newSearchRequest(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String... attributes)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
ModelFactoryImpl.newSearchRequest(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String... attributes)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
LdapConnectionTemplate.newSearchRequest(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String... attributes)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
ModelFactory.newSearchRequest(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
all normal attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
ModelFactoryImpl.newSearchRequest(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
all normal attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
LdapConnectionTemplate.newSearchRequest(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
all normal attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
ModelFactory.newSearchRequest(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String... attributes)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
ModelFactoryImpl.newSearchRequest(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String... attributes)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
attributes for each matching entry. |
org.apache.directory.api.ldap.model.message.SearchRequest |
LdapConnectionTemplate.newSearchRequest(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String... attributes)
Returns a new
SearchRequest over baseDn in
scope matching filter returning
attributes for each matching entry. |
<T> List<T> |
LdapConnectionOperations.search(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
EntryMapper<T> entryMapper)
Searches for the entries matching the supplied criteria, feeding the
result into the
entryMapper. |
<T> List<T> |
LdapConnectionTemplate.search(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
EntryMapper<T> entryMapper)
Searches for the entries matching the supplied criteria, feeding the
result into the
entryMapper. |
<T> List<T> |
LdapConnectionOperations.search(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String[] attributes,
EntryMapper<T> entryMapper)
Searches for the entries matching the supplied criteria, feeding the
result into the
entryMapper, querying only the requested
attributes. |
<T> List<T> |
LdapConnectionTemplate.search(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String[] attributes,
EntryMapper<T> entryMapper)
Searches for the entries matching the supplied criteria, feeding the
result into the
entryMapper, querying only the requested
attributes. |
<T> List<T> |
LdapConnectionOperations.search(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
EntryMapper<T> entryMapper)
Searches for the entries matching the supplied criteria, feeding the
result into the
entryMapper. |
<T> List<T> |
LdapConnectionTemplate.search(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
EntryMapper<T> entryMapper)
Searches for the entries matching the supplied criteria, feeding the
result into the
entryMapper. |
<T> List<T> |
LdapConnectionOperations.search(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String[] attributes,
EntryMapper<T> entryMapper)
Searches for the entries matching the supplied criteria, feeding the
result into the
entryMapper, querying only the requested
attributes. |
<T> List<T> |
LdapConnectionTemplate.search(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String[] attributes,
EntryMapper<T> entryMapper)
Searches for the entries matching the supplied criteria, feeding the
result into the
entryMapper, querying only the requested
attributes. |
<T> T |
LdapConnectionOperations.searchFirst(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
EntryMapper<T> entryMapper)
Searches for the first entry matching the supplied criteria, feeding the
result into the
entryMapper. |
<T> T |
LdapConnectionTemplate.searchFirst(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
EntryMapper<T> entryMapper)
Searches for the first entry matching the supplied criteria, feeding the
result into the
entryMapper. |
<T> T |
LdapConnectionOperations.searchFirst(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String[] attributes,
EntryMapper<T> entryMapper)
Searches for the first entry matching the supplied criteria, feeding the
result into the
entryMapper, querying only the requested
attributes. |
<T> T |
LdapConnectionTemplate.searchFirst(org.apache.directory.api.ldap.model.name.Dn baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String[] attributes,
EntryMapper<T> entryMapper)
Searches for the first entry matching the supplied criteria, feeding the
result into the
entryMapper, querying only the requested
attributes. |
<T> T |
LdapConnectionOperations.searchFirst(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
EntryMapper<T> entryMapper)
Searches for the first entry matching the supplied criteria, feeding the
result into the
entryMapper. |
<T> T |
LdapConnectionTemplate.searchFirst(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
EntryMapper<T> entryMapper)
Searches for the first entry matching the supplied criteria, feeding the
result into the
entryMapper. |
<T> T |
LdapConnectionOperations.searchFirst(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String[] attributes,
EntryMapper<T> entryMapper)
Searches for the first entry matching the supplied criteria, feeding the
result into the
entryMapper, querying only the requested
attributes. |
<T> T |
LdapConnectionTemplate.searchFirst(String baseDn,
FilterBuilder filter,
org.apache.directory.api.ldap.model.message.SearchScope scope,
String[] attributes,
EntryMapper<T> entryMapper)
Searches for the first entry matching the supplied criteria, feeding the
result into the
entryMapper, querying only the requested
attributes. |
Copyright © 2009–2019 The Apache Software Foundation. All rights reserved.