Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for escapeValue (0.04 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            if (username == null) {
                value = StringUtil.EMPTY;
            } else if (maxLength >= 0 && username.length() > maxLength) {
                value = LdapUtil.escapeValue(username.substring(0, maxLength));
            } else {
                value = LdapUtil.escapeValue(username);
            }
            return String.format(getSystemProperty(Constants.LDAP_SECURITY_PRINCIPAL, StringUtil.EMPTY), value);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

         * @see <a href="https://tools.ietf.org/html/rfc4515">RFC 4515 - LDAP String Representation of Search Filters</a>
         * @deprecated Use {@link LdapUtil#escapeValue(String)} instead
         */
        @Deprecated
        protected String escapeLDAPSearchFilter(final String filter) {
            return LdapUtil.escapeValue(filter);
        }
    
        /**
         * Normalizes a permission name based on configuration settings.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
Back to Top