Spring LDAP Framework

Uses of Interface
org.springframework.ldap.filter.Filter

Packages that use Filter
org.springframework.ldap.filter Utility classes for dynamically building LDAP filters. 
 

Uses of Filter in org.springframework.ldap.filter
 

Classes in org.springframework.ldap.filter that implement Filter
 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 (*).
 

Methods in org.springframework.ldap.filter with parameters of type Filter
 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
 

Constructors in org.springframework.ldap.filter with parameters of type Filter
NotFilter(Filter filter)
          Create a filter that negates the outcome of the given filter.
 


Spring LDAP Framework

Copyright © 2005-2010 The Spring LDAP Framework. All Rights Reserved.