Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getLdapAdminGroupFilter (0.07 sec)

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

                                }
                            }));
                            oldGroupList.stream().forEach(name -> {
                                search(fessConfig.getLdapAdminGroupBaseDn(), fessConfig.getLdapAdminGroupFilter(name), null, adminEnv,
                                        subResult -> {
                                            if (!subResult.isEmpty()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            return oc;
        }
    
        String getLdapAdminGroupFilter();
    
        default String getLdapAdminGroupFilter(final String name) {
            return String.format(getLdapAdminGroupFilter(), name);
        }
    
        String getLdapAdminGroupBaseDn();
    
        default String getLdapAdminGroupSecurityPrincipal(final String name) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. cn=%s <br>
         * comment: Group filter for LDAP admin.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLdapAdminGroupFilter();
    
        /**
         * Get the value for the key 'ldap.admin.group.base.dn'. <br>
         * The value is, e.g. ou=Group,dc=fess,dc=codelibs,dc=org <br>
         * comment: Base DN for LDAP admin group.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top