Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 270 for Role (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

    public class AdminReqheaderAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminReqheaderAction() {
            super();
        }
    
        /** Role name for admin request header operations */
        public static final String ROLE = "admin-reqheader";
    
        private static final Logger logger = LogManager.getLogger(AdminReqheaderAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

             */
            public void setGroups(final String[] groups) {
                this.groups = groups;
            }
    
            /**
             * Sets the user's role assignments.
             * @param roles Array of role names.
             */
            public void setRoles(final String[] roles) {
                this.roles = roles;
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

    public class AdminSchedulerAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminSchedulerAction() {
            super();
        }
    
        /** Role name for admin scheduler operations */
        public static final String ROLE = "admin-scheduler";
    
        private static final Logger logger = LogManager.getLogger(AdminSchedulerAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
        // ===================================================================================
        //
    
        /**
         * Displays the general settings index page.
         *
         * @return HTML response for the general settings page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            saveToken();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/index.jsp

    									<li class="nav-item">
    										<div class="dropdown">
    											<a id="userMenu" class="nav-link dropdown-toggle" data-bs-toggle="dropdown"
    												href="#" role="button" aria-haspopup="true"
    												aria-expanded="false"> <em class="fa fa-fw fa-user">${username}
    											</a>
    											<div class="dropdown-menu" aria-labelledby="userMenu">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:58:45 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                }
            } catch (Exception e) {
                // Expected for null URL
            }
    
            // Test with empty role and virtual host lists
            Map<String, Object> emptyListsMap = new HashMap<>();
            emptyListsMap.put("url", "http://test.com");
            emptyListsMap.put("role", new ArrayList<String>());
            emptyListsMap.put("virtual_host", new ArrayList<String>());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

        /**
         * ID of the role type.
         */
        public String id;
    
        /**
         * Name of the role type.
         */
        public String name;
    
        /**
         * Value of the role type.
         */
        public String value;
    
        /**
         * Sort order of the role type.
         */
        public String sortOrder;
    
        /**
         * The user who created the role type.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/AdminDictAction.java

     *
     */
    public class AdminDictAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminDictAction() {
            super();
        }
    
        /** The role for this action. */
        public static final String ROLE = "admin-dict";
    
        // ===================================================================================
        //                                                                           Attribute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/orig/view/footer.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <footer role="contentinfo">
    	<div class="container text-center">
    		<p class="text-muted">
    			<la:message key="labels.footer.copyright" />
    		</p>
    	</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 233 bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.labeltype_title_details=Label
    labels.labeltype_name=Name
    labels.labeltype_value=Value
    labels.labeltype_included_paths=Included Paths
    labels.labeltype_excluded_paths=Excluded Paths
    labels.roletype_configuration=Role
    labels.roletype_title_details=Role
    labels.roletype_name=Name
    labels.roletype_value=Value
    labels.reqheader_configuration=Request Header
    labels.reqheader_list_name=Name
    labels.reqheader_list_web_crawling_config=Config Name
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
Back to top