Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getRoleSearchRolePrefix (0.4 sec)

  1. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

            }
            if (permission.startsWith(fessConfig.getRoleSearchRolePrefix())
                    && permission.length() > fessConfig.getRoleSearchRolePrefix().length()) {
                return aclPrefix + rolePrefix + permission.substring(fessConfig.getRoleSearchRolePrefix().length());
            }
            return permission;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         *
         * @param name The role name.
         * @return The search role.
         */
        public String getSearchRoleByRole(final String name) {
            return createSearchRole(ComponentUtil.getFessConfig().getRoleSearchRolePrefix(), name);
        }
    
        /**
         * Creates a search role string.
         *
         * @param type The type of the role.
         * @param name The name of the role.
         * @return The search role string.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    if (fessConfig.isLdapRoleSearchRoleEnabled()) {
                        roleSet.add(systemHelper.getSearchRoleByRole(normalizePermissionName(name)));
                        return fessConfig.getRoleSearchRolePrefix();
                    }
                } else if (fessConfig.isLdapRoleSearchGroupEnabled()) {
                    roleSet.add(systemHelper.getSearchRoleByGroup(normalizePermissionName(name)));
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 86.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. R <br>
         * comment: Prefix for role roles in search.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getRoleSearchRolePrefix();
    
        /**
         * Get the value for the key 'role.search.denied.prefix'. <br>
         * The value is, e.g. D <br>
         * comment: Prefix for denied roles in search.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
Back to top