Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isLdapAllowEmptyPermission (0.09 sec)

  1. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

        public void test_allowEmptyGroupAndRole() {
            final AtomicBoolean allowEmptyPermission = new AtomicBoolean();
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                public boolean isLdapAllowEmptyPermission() {
                    return allowEmptyPermission.get();
                }
    
                public String getRoleSearchUserPrefix() {
                    return "1";
                }
            });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

         * @return true if empty permissions are allowed, false otherwise
         */
        protected boolean allowEmptyGroupAndRole(final LdapUser ldapUser) {
            if (fessConfig.isLdapAllowEmptyPermission()) {
                return true;
            }
    
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            for (final String permission : ldapUser.getPermissions()) {
    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/FessConfig.java

         * The value is, e.g. true <br>
         * comment: Whether to allow empty permissions in LDAP.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isLdapAllowEmptyPermission();
    
        /**
         * Get the value for the key 'ldap.samaccountname.group'. <br>
         * The value is, e.g. false <br>
         * comment: Whether to use samAccountName for LDAP 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