Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 270 for Role (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

    public class AdminDictProtwordsAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminDictProtwordsAction() {
            super();
        }
    
        /** The role for this action. */
        public static final String ROLE = "admin-dict";
    
        private static final Logger logger = LogManager.getLogger(AdminDictProtwordsAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Displays the group list with pagination.
         *
         * @param pageNumber the page number
         * @param form the search form
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

                                <div class="data-wrapper">
    
                                    <c:if test="${editable}">
                                        <div class="modal" id="createDir" tabindex="-1" role="dialog">
                                            <div class="modal-dialog">
                                                <la:form action="/admin/storage/createDir/"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 26 01:48:41 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/user/exbhv/RoleBhv.java

    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    
    import org.codelibs.core.misc.Pair;
    import org.codelibs.fess.opensearch.user.bsbhv.BsRoleBhv;
    import org.codelibs.fess.opensearch.user.exentity.Role;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.util.DfTypeUtil;
    
    /**
     * @author FreeGen
     */
    public class RoleBhv extends BsRoleBhv {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java

        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the role being edited.
         * This is a required field for identifying which role to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this role.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Path Map management.
     *
     */
    public class AdminPathmapAction extends FessAdminAction {
    
        /**
         * Role identifier for admin path mapping operations.
         */
        public static final String ROLE = "admin-pathmap";
    
        private static final Logger logger = LogManager.getLogger(AdminPathmapAction.class);
    
        /**
         * Default constructor for AdminPathmapAction.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

        }
    
        /**
         * Returns the action role for this admin action.
         *
         * @return the role name
         */
        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

        /**
         * Default constructor.
         */
        public AdminRelatedqueryAction() {
            super();
        }
    
        /** Role name for admin related query operations */
        public static final String ROLE = "admin-relatedquery";
    
        private static final Logger logger = LogManager.getLogger(AdminRelatedqueryAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            assertNotNull(valueMethod);
            assertEquals(String[].class, valueMethod.getReturnType());
            assertEquals(0, valueMethod.getParameterCount());
        }
    
        // Test class with single role
        @Secured({ "ROLE_USER" })
        static class SingleRoleClass {
            public void testMethod() {
            }
        }
    
        // Test class with multiple roles
        @Secured({ "ROLE_USER", "ROLE_ADMIN" })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                logger.warn("Failed to access groups/roles in AzureAD.", e);
            }
        }
    
        /**
         * Adds a group or role name to the specified list.
         * @param list The list to add the group or role name to.
         * @param value The group or role name value.
         * @param useDomainServices Whether to use domain services for group resolution.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
Back to top