Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 254 for pole (0.03 seconds)

  1. 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.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  2. 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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3K bytes
    - Click Count (0)
  3. src/main/resources/fess_message_pt_BR.properties

    errors.app.db.already.deleted = Pode ter sido excluído por outro processo. Por favor, tente novamente.
    errors.app.db.already.updated = Pode ter sido atualizado por outro processo. Por favor, tente novamente.
    errors.app.db.already.exists = Os dados já existem. Por favor, tente novamente.
    errors.app.double.submit.request = Esta solicitação pode já ter sido processada. Por favor, tente novamente.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  4. CLAUDE.md

    ## Architecture Patterns
    
    ### Action (Controller)
    - Hierarchy: `TypicalAction` → `FessBaseAction` → `FessAdminAction`/`FessSearchAction`
    - `@Execute` marks web endpoints
    - `@Resource` for DI
    - `@Secured({ "role", "role-view" })` for authorization
    - Return `HtmlResponse` for JSP, `JsonResponse` for APIs
    
    ### Service
    - Inject behaviors (Bhv) for data access
    - Use `OptionalEntity<T>` for nullable returns
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java

        }
    
        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
        /**
         * Displays the search request management index page.
         *
         * @return HTML response for the search request page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml(this::saveToken);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  6. 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;
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

        }
    
        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
        /**
         * Show the index page.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            saveToken();
            return asListHtml();
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 24 02:07:40 GMT 2025
    - 32.1K bytes
    - Click Count (0)
  8. 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);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 20.1K bytes
    - Click Count (0)
  9. 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 })
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 16K bytes
    - Click Count (0)
  10. 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.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 15.4K bytes
    - Click Count (0)
Back to Top