Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getLdapAdminUserObjectClassAttribute (0.34 sec)

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

                    .get(stream -> stream.filter(StringUtil::isNotBlank).anyMatch(s -> s.equals(name)));
        }
    
        String getLdapAdminUserObjectClasses();
    
        default Attribute getLdapAdminUserObjectClassAttribute() {
            final Attribute oc = new BasicAttribute("objectClass");
            split(getLdapAdminUserObjectClasses(), ",").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(s -> oc.add(s.trim())));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                } else {
                    final BasicAttributes entry = new BasicAttributes();
                    addUserAttributes(entry, user);
                    final Attribute oc = fessConfig.getLdapAdminUserObjectClassAttribute();
                    entry.put(oc);
                    insert(userDN, entry, adminEnv);
                }
            });
    
            // groups and roles
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top