You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/11/08 11:50:43 UTC

[camel] 02/02: CAMEL-18696: camel-ldap - Make filter a bit easier to use (#8687)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 961bc8d51a4331eff982dc5be35b38e333e9fca8
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Nov 8 12:49:57 2022 +0100

    CAMEL-18696: camel-ldap - Make filter a bit easier to use (#8687)
---
 .../org/apache/camel/component/ldap/LdapProducer.java   | 17 +++++------------
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/components/camel-ldap/src/main/java/org/apache/camel/component/ldap/LdapProducer.java b/components/camel-ldap/src/main/java/org/apache/camel/component/ldap/LdapProducer.java
index 97a3e750fd9..c26bd63ae1a 100644
--- a/components/camel-ldap/src/main/java/org/apache/camel/component/ldap/LdapProducer.java
+++ b/components/camel-ldap/src/main/java/org/apache/camel/component/ldap/LdapProducer.java
@@ -175,20 +175,13 @@ public class LdapProducer extends DefaultProducer {
     }
 
     /**
-     * Given an LDAP search string, returns the string with certain characters
-     * escaped according to RFC 2254 guidelines.
+     * Given an LDAP search string, returns the string with certain characters escaped according to RFC 2254 guidelines.
      *
-     * The character mapping is as follows:
-     *     char -&gt;  Replacement
-     *    ---------------------------
-     *     *  -&gt; \2a
-     *     (  -&gt; \28
-     *     )  -&gt; \29
-     *     \  -&gt; \5c
-     *     \0 -&gt; \00
+     * The character mapping is as follows: char -&gt; Replacement --------------------------- * -&gt; \2a ( -&gt; \28 )
+     * -&gt; \29 \ -&gt; \5c \0 -&gt; \00
      *
-     * @param filter string to escape according to RFC 2254 guidelines
-     * @return String the escaped/encoded result
+     * @param  filter string to escape according to RFC 2254 guidelines
+     * @return        String the escaped/encoded result
      */
     private String escapeFilter(String filter) {
         if (filter == null) {