Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getLdapAdminRoleObjectClassAttribute (0.41 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    final BasicAttributes entry = new BasicAttributes();
                    addRoleAttributes(entry, role);
                    final Attribute oc = fessConfig.getLdapAdminRoleObjectClassAttribute();
                    entry.put(oc);
                    insert(entryDN, entry, adminEnv);
                }
            });
    
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                buf.append(',').append(getLdapAdminUserBaseDn());
            }
            return buf.toString();
        }
    
        String getLdapAdminRoleObjectClasses();
    
        default Attribute getLdapAdminRoleObjectClassAttribute() {
            final Attribute oc = new BasicAttribute("objectClass");
            split(getLdapAdminRoleObjectClasses(), ",").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(s -> oc.add(s.trim())));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top