Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GroupService (0.17 sec)

  1. src/main/java/org/codelibs/fess/app/service/GroupService.java

        /** Behavior class for user database operations */
        @Resource
        protected UserBhv userBhv;
    
        /**
         * Default constructor for GroupService.
         */
        public GroupService() {
            // Default constructor
        }
    
        /**
         * Retrieves a paginated list of groups based on the provided pager criteria.
         * Updates the pager with pagination information including page numbers and ranges.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

        //                                                                           =========
        /** Service for group operations. */
        @Resource
        private GroupService groupService;
    
        /** Pager for group list pagination. */
        @Resource
        private GroupPager groupPager;
    
        // ===================================================================================
    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/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java

        //                                                                           =========
    
        /** Service for managing group configurations */
        @Resource
        private GroupService groupService;
    
        // GET /api/admin/group
        // PUT /api/admin/group
        /**
         * Returns list of group settings.
         * Supports both GET and PUT requests for retrieving paginated group configurations.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

        @Resource
        private UserService userService;
        @Resource
        private RoleService roleService;
        @Resource
        private GroupService groupService;
        @Resource
        private UserPager userPager;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
Back to top