You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by lu...@apache.org on 2015/02/14 18:33:21 UTC

svn commit: r1659822 - /directory/site/trunk/content/api/user-guide/2.11-filter-builder.mdtext

Author: lucastheisen
Date: Sat Feb 14 17:33:21 2015
New Revision: 1659822

URL: http://svn.apache.org/r1659822
Log:
added documentation for using filter builder with ldapconnectiontemplate

Modified:
    directory/site/trunk/content/api/user-guide/2.11-filter-builder.mdtext

Modified: directory/site/trunk/content/api/user-guide/2.11-filter-builder.mdtext
URL: http://svn.apache.org/viewvc/directory/site/trunk/content/api/user-guide/2.11-filter-builder.mdtext?rev=1659822&r1=1659821&r2=1659822&view=diff
==============================================================================
--- directory/site/trunk/content/api/user-guide/2.11-filter-builder.mdtext (original)
+++ directory/site/trunk/content/api/user-guide/2.11-filter-builder.mdtext Sat Feb 14 17:33:21 2015
@@ -95,7 +95,7 @@ Returns a new FilterBuilder for testing
  
 would result in the string: _(cn>=Kermit The Frog)_
  
-Which would match entries with the common name Kermit The Frog.  Be careful when using the equal filter as it is an _EXACT MATCH_ filter.  While it may seem natural to use * as a wildcard, it will actually be escaped using this filter.  If you meant to use a wildcard in your filter, you should use one of the [Approximate Filters](#approximate-filter).
+Which would match entries with the common name Kermit The Frog.  Be careful when using the equal filter as it is an _EXACT MATCH_ filter.  While it may seem natural to use \* as a wildcard, it will actually be escaped using this filter.  If you meant to use a wildcard in your filter, you should use one of [startsWith](#startswith-filter), [endsWith](#endswith-filter), [contains](#contains-filter), or [substring](#substring-filter), .
 
 ## Extensible Filter