- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for LdapUtil (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/ldap/LdapUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.ldap; /** * Utility class for LDAP operations. */ public final class LdapUtil { private LdapUtil() { } /** * Escapes special characters in a value for use in LDAP search filters. * This method escapes characters that have special meaning in LDAP filter expressionsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 08:06:20 GMT 2026 - 2K bytes - Click Count (0) -
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)