Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 266 for role3 (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

            runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNameKeymatch()));
        }
    
        /**
         * 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 Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

        /**
         * Default constructor.
         */
        public AdminDuplicatehostAction() {
            super();
        }
    
        /**
         * Role name for duplicate host administration.
         */
        public static final String ROLE = "admin-duplicatehost";
    
        private static final Logger logger = LogManager.getLogger(AdminDuplicatehostAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

    public class AdminDictKuromojiAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminDictKuromojiAction() {
            super();
        }
    
        /** The role for this action. */
        public static final String ROLE = "admin-dict";
    
        private static final Logger logger = LogManager.getLogger(AdminDictKuromojiAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.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
    - 18.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Show the list page.
         * @param pageNumber The page number.
         * @param form The search form.
         * @return The HTML response.
         */
        @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.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

    /**
     * Admin action for Synonym management.
     *
     */
    public class AdminDictSynonymAction extends FessAdminAction {
    
        /**
         * Role name required for accessing synonym dictionary administration features.
         */
        public static final String ROLE = "admin-dict";
    
        private static final Logger logger = LogManager.getLogger(AdminDictSynonymAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                    throw new WebApiException(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e);
                }
            }
        }
    
        /**
         * Sets the roles that are allowed to access the search engine API.
         *
         * @param acceptedRoles array of role names that can access the API
         */
        public void setAcceptedRoles(final String[] acceptedRoles) {
            this.acceptedRoles = acceptedRoles;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default String[] getAuthenticationAdminRolesAsArray() {
            String[] roles = (String[]) propMap.get(AUTHENTICATION_ADMIN_ROLES);
            if (roles == null) {
                roles = getAuthenticationAdminRoles().split(",");
                propMap.put(AUTHENTICATION_ADMIN_ROLES, roles);
            }
            return roles;
        }
    
        String getJvmCrawlerOptions();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java

        }
    
        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
        /**
         * Displays the log management index page.
         *
         * @return HTML response for the log list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asIndexHtml();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            saveToken();
            return asHtml(path_AdminDesign_AdminDesignJsp).useForm(DesignForm.class);
        }
    
        /**
         * Go back to the index page.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse back() {
            saveToken();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.3K bytes
    - Viewed (0)
Back to top