Package | Description |
---|---|
org.springframework.ldap.filter |
Utility classes for dynamically building LDAP
filters.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractFilter
Convenience class that implements most of the methods in the Filter
interface.
|
class |
AndFilter
A filter for a logical AND.
|
class |
BinaryLogicalFilter
Abstract superclass for binary logical operations, that is "AND"
and "OR" operations.
|
class |
CompareFilter
Abstract superclass for filters that compare values.
|
class |
EqualsFilter
A filter for 'equals'.
|
class |
GreaterThanOrEqualsFilter
A filter to compare >=.
|
class |
HardcodedFilter
Allows hard coded parts to be included in a search filter.
|
class |
LessThanOrEqualsFilter
A filter to compare <=.
|
class |
LikeFilter
This filter allows the user to specify wildcards (*) by not escaping them in
the filter.
|
class |
NotFilter
A filter for 'not'.
|
class |
NotPresentFilter
A convenience class that combines
NOT behavior with present
behavior to allow the user to check for the non-existence of a attribute. |
class |
OrFilter
Filter for logical OR.
|
class |
PresentFilter
Filter that allows the user to check for the existence of a attribute.
|
class |
WhitespaceWildcardsFilter
This filter automatically converts all whitespace to wildcards (*).
|
Modifier and Type | Method and Description |
---|---|
AndFilter |
AndFilter.and(Filter query)
Add a query to the AND expression.
|
BinaryLogicalFilter |
BinaryLogicalFilter.append(Filter query)
Add a query to this logical operation.
|
OrFilter |
OrFilter.or(Filter query)
Add a query to the OR expression
|
Constructor and Description |
---|
NotFilter(Filter filter)
Create a filter that negates the outcome of the given
filter . |
Copyright © 2005-2012 The Spring LDAP Framework. All Rights Reserved.