Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Admin (0.09 sec)

  1. src/main/resources/fess_config.properties

    ldap.admin.role.base.dn=ou\=Role,dc\=fess,dc\=codelibs,dc\=org
    # Object classes for LDAP admin role.
    ldap.admin.role.object.classes=groupOfNames
    # Group filter for LDAP admin.
    ldap.admin.group.filter=cn\=%s
    # Base DN for LDAP admin group.
    ldap.admin.group.base.dn=ou\=Group,dc\=fess,dc\=codelibs,dc\=org
    # Object classes for LDAP admin group.
    ldap.admin.group.object.classes=groupOfNames
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            if (value == null) {
                throw new LdapConfigurationException(key + " is null.");
            }
            env.put(key, value);
        }
    
        /**
         * Creates the admin environment for LDAP connection.
         *
         * @return The admin environment for LDAP connection.
         */
        protected Hashtable<String, String> createAdminEnv() {
            return createEnvironment(//
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                        }
                    }
                    return null;
                }).filter(v -> {
                    if (v == null) {
                        return false;
                    }
                    if ("admin".equalsIgnoreCase(v.getValue3()) || "common".equalsIgnoreCase(v.getValue3())
                            || "error".equalsIgnoreCase(v.getValue3()) || "login".equalsIgnoreCase(v.getValue3())
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

            assertEquals("*", context.getQueryString());
        }
    
        public void test_build_adminSearch() {
            QueryContext context = queryHelper.build(SearchRequestType.ADMIN_SEARCH, "test", ctx -> {
                // Admin search should not add virtual host filter
                ctx.skipRoleQuery(); // Skip role query to avoid complex dependency issues
            });
    
            assertNotNull(context);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
Back to top