net.sf.ldaptemplate.support.filter
Class LessThanOrEqualsFilter
java.lang.Object
net.sf.ldaptemplate.support.filter.AbstractFilter
net.sf.ldaptemplate.support.filter.CompareFilter
net.sf.ldaptemplate.support.filter.LessThanOrEqualsFilter
- All Implemented Interfaces:
- Filter
- public class LessThanOrEqualsFilter
- extends CompareFilter
A filter to compare <=. LDAP RFC does not allow > comparison.
LessThanOrEqualsFilter filter = new LessThanOrEqualsFilter("cn", "Some CN");
System.out.println(filter.ecode());
would resut in: (cn<=Some CN)
- Author:
- Mattias Arthursson
Method Summary |
protected java.lang.String |
getCompareString()
Implement this method in subclass to return a String representing the
operator, e.g. the Equals sign, "=". |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
LessThanOrEqualsFilter
public LessThanOrEqualsFilter(java.lang.String attribute,
java.lang.String value)
LessThanOrEqualsFilter
public LessThanOrEqualsFilter(java.lang.String attribute,
int value)
getCompareString
protected java.lang.String getCompareString()
- Description copied from class:
CompareFilter
- Implement this method in subclass to return a String representing the
operator, e.g. the Equals sign, "=".
- Specified by:
getCompareString
in class CompareFilter
- Returns:
- the String to use as operator in the comparison for the specific
subclass.
Copyright © 2006 Jayway AB. All Rights Reserved.