org.springframework.ldap.support.filter
Class EqualsFilter

java.lang.Object
  extended by org.springframework.ldap.support.filter.AbstractFilter
      extended by org.springframework.ldap.support.filter.CompareFilter
          extended by org.springframework.ldap.support.filter.EqualsFilter
All Implemented Interfaces:
Filter
Direct Known Subclasses:
LikeFilter, WhitespaceWildcardsFilter

public class EqualsFilter
extends CompareFilter

A filter for 'equals'. The following code:

 EqualsFilter filter = new EqualsFilter("cn", "Some CN");
 System.out.println(filter.ecode());
 
would result in:
(cn=Some CN)

Author:
Adam Skogman

Constructor Summary
EqualsFilter(java.lang.String attribute, int value)
          Convenience constructor for int values.
EqualsFilter(java.lang.String attribute, java.lang.String value)
           
 
Method Summary
protected  java.lang.String getCompareString()
          Implement this method in subclass to return a String representing the operator.
 
Methods inherited from class org.springframework.ldap.support.filter.CompareFilter
encode, encodeValue, equals, hashCode
 
Methods inherited from class org.springframework.ldap.support.filter.AbstractFilter
encode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EqualsFilter

public EqualsFilter(java.lang.String attribute,
                    java.lang.String value)

EqualsFilter

public EqualsFilter(java.lang.String attribute,
                    int value)
Convenience constructor for int values.

Parameters:
attribute - Name of attribute in filter.
value - The value of the attribute in the filter.
Method Detail

getCompareString

protected java.lang.String getCompareString()
Description copied from class: CompareFilter
Implement this method in subclass to return a String representing the operator. The getCompareString() would for example return an equals sign, "=".

Specified by:
getCompareString in class CompareFilter
Returns:
the String to use as operator in the comparison for the specific subclass.


Copyright � 2002-2006. All Rights Reserved.