Package org.springframework.ldap.filter
Class LikeFilter
java.lang.Object
org.springframework.ldap.filter.AbstractFilter
org.springframework.ldap.filter.CompareFilter
org.springframework.ldap.filter.EqualsFilter
org.springframework.ldap.filter.LikeFilter
- All Implemented Interfaces:
Filter
This filter allows the user to specify wildcards (*) by not escaping them in the
filter. The following code:
LikeFilter filter = new LikeFilter("cn", "foo*"); System.out.println(filter.ecode());would result in:
(cn=foo*)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected String
encodeValue
(String value) Deprecated, for removal: This API element is subject to removal in a future version.Methods inherited from class org.springframework.ldap.filter.EqualsFilter
getCompareString
Methods inherited from class org.springframework.ldap.filter.CompareFilter
encode, equals, hashCode
Methods inherited from class org.springframework.ldap.filter.AbstractFilter
encode, toString
-
Constructor Details
-
LikeFilter
-
-
Method Details
-
encodeValue
Deprecated, for removal: This API element is subject to removal in a future version.please extendCompareFilter
insteadDescription copied from class:CompareFilter
Override to perform special encoding in subclass.- Overrides:
encodeValue
in classCompareFilter
- Parameters:
value
- the value to encode.- Returns:
- properly escaped value.
-
CompareFilter
instead