Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for isLdapIgnoreNetbiosName (0.09 seconds)

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

                    .get(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).toArray(n -> new String[n]));
        }
    
        boolean isLdapIgnoreNetbiosName();
    
        default String getCanonicalLdapName(final String name) {
            if (isLdapIgnoreNetbiosName()) {
                final String[] values = name.split("\\\\");
                if (values.length == 0) {
                    return null;
                }
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 88.2K bytes
    - Click Count (0)
Back to Top