Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 270 for Role (0.01 sec)

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

         */
        protected void addRoleAttributes(final BasicAttributes entry, final Role user) {
            // nothing
        }
    
        /**
         * Deletes a role from the LDAP directory.
         *
         * @param role the role object to delete
         */
        public void delete(final Role role) {
            if (!fessConfig.isLdapAdminEnabled()) {
                return;
            }
    
    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/app/pager/RolePager.java

        /**
         * Current page number in pagination.
         */
        private int currentPageNumber;
    
        /**
         * ID of the role.
         */
        public String id;
    
        /**
         * Name of the role.
         */
        public String name;
    
        /**
         * Version number of the role.
         */
        public String versionNo;
    
        /**
         * Clears the pager's state.
         */
        public void clear() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/role/admin_role.jsp

        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="user"/>
            <jsp:param name="menuType" value="role"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.role" class="col-sm-3 text-sm-right col-form-label">role</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.role"/>
                                            <la:textarea styleId="doc.role"
                                                         property="doc.role" styleClass="form-control"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                </c:choose>
                                <c:if test="${editable}">
                                    <div class="modal fade" id="confirmToDelete"
                                         tabindex="-1" role="dialog">
                                        <div class="modal-dialog">
                                            <div class="modal-content bg-danger">
                                                <div class="modal-header">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 24 13:09:22 UTC 2020
    - 20K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         * @return The search role.
         */
        public String getSearchRoleByGroup(final String name) {
            return createSearchRole(ComponentUtil.getFessConfig().getRoleSearchGroupPrefix(), name);
        }
    
        /**
         * Gets the search role for a given role.
         *
         * @param name The role name.
         * @return The search role.
         */
        public String getSearchRoleByRole(final String name) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

                        return "anchor";
                    case FessConfig.INDEX_FIELD_SEGMENT:
                        return "segment";
                    case FessConfig.INDEX_FIELD_ROLE:
                        return "role";
                    case FessConfig.INDEX_FIELD_BOOST:
                        return "boost";
                    case FessConfig.INDEX_FIELD_TITLE:
                        return "title";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

        }
    
        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
        /**
         * Displays the storage management index page.
         *
         * @return HTML response for the storage list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            saveToken();
            return asListHtml(StringUtil.EMPTY);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

        /**
         * Default constructor for AdminMaintenanceAction.
         */
        public AdminMaintenanceAction() {
            super();
        }
    
        /**
         * Role identifier for admin maintenance operations.
         */
        public static final String ROLE = "admin-maintenance";
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            if (StringUtil.isNotBlank(forumLink)) {
                runtime.registerData("forumLink", forumLink);
            }
        }
    
        /**
         * Get the action role.
         * @return The action role.
         */
        protected abstract String getActionRole();
    
        /**
         * Writes data to the specified file path.
         *
         * @param path the file path to write to
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top