Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 152 for pagination (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java

        //                                                                      ==============
    
        /**
         * Retrieves web authentication settings with pagination.
         *
         * @param body the search parameters for filtering and pagination
         * @return JSON response containing web authentication settings list
         */
        // GET /api/admin/webauth/settings
        // PUT /api/admin/webauth/settings
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken.jsp

                                    <c:set var="pager" value="${accessTokenPager}"
                                           scope="request"/>
                                    <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                    <c:if test="${pager.currentPageNumber > pager.allPageCount}">
                                        <script>location.href = "${contextPath}/admin/accesstoken/list/${pager.allPageCount}";</script>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java

        // GET /api/admin/joblog/logs
        /**
         * Returns list of job logs.
         * Supports filtering and pagination for job execution history.
         *
         * @param body search parameters for filtering and pagination
         * @return JSON response containing job logs list with pagination info
         */
        @Execute
        public JsonResponse<ApiResult> logs(final SearchBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java

         * Supports both GET and PUT requests for retrieving paginated file configuration settings.
         *
         * @param body search parameters for filtering and pagination
         * @return JSON response containing file configuration settings list with pagination info
         */
        @Execute
        public JsonResponse<ApiResult> settings(final SearchBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/reqheader/admin_reqheader.jsp

                                        <c:set var="pager" value="${reqHeaderPager}"
                                               scope="request"/>
                                        <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                        <c:if test="${pager.currentPageNumber > pager.allPageCount}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 24 13:43:18 UTC 2020
    - 5.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

        public RoleTypePager() {
            super();
        }
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default page size for pagination.
         */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /**
         * Default current page number for pagination.
         */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /**
         * Total number of records.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

         * Extracts a subset of documents from the full result list based on pagination parameters.
         * Applies proper bounds checking to ensure the extracted range is within the document list size.
         *
         * @param docs the full list of search result documents
         * @param pageSize the number of documents to include in the page
         * @param startPosition the starting position for pagination
         * @return sublist of documents for the requested page
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

        @Resource
        private StopwordsService stopwordsService;
    
        /**
         * Retrieves stopwords dictionary settings with pagination support.
         *
         * @param dictId the dictionary ID
         * @param body the search body containing pagination and filter parameters
         * @return JSON response containing list of stopwords dictionary items
         */
        // GET /api/admin/dict/stopwords/settings/{dictId}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java

    package org.codelibs.fess.app.web.api.admin;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Base class for search request body objects in admin API.
     * Provides common pagination parameters for search operations.
     */
    public class BaseSearchBody {
    
        /** The page size for search results. */
        public Integer size = ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java

        /** Helper for managing search suggestions and bad words */
        @Resource
        protected SuggestHelper suggestHelper;
    
        /**
         * Retrieves bad word settings with pagination support.
         *
         * @param body the search body containing pagination and filter parameters
         * @return JSON response containing list of bad word configurations
         */
        // GET /api/admin/badword/settings
        // PUT /api/admin/badword/settings
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top