Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 152 for pagination (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

        }
    
        /**
         * Gets the list of page numbers for pagination navigation.
         *
         * @return the list of page numbers
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers for pagination navigation.
         *
         * @param pageNumberList the list of page numbers
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of failure URLs based on the provided pager criteria.
         *
         * @param failureUrlPager the pager containing search criteria and pagination settings
         * @return a list of FailureUrl entities matching the criteria
         */
        public List<FailureUrl> getFailureUrlList(final FailureUrlPager failureUrlPager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

        @Resource
        private KuromojiService kuromojiService;
    
        /**
         * Retrieves Kuromoji 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 Kuromoji dictionary items
         */
        // GET /api/admin/dict/kuromoji/settings/{dictId}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java

        /** The list of page numbers for pagination display. */
        private List<Integer> pageNumberList;
    
        /** The number of items to display per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The dictionary ID */
        public String id;
    
        /**
         * Clears all pagination data and resets to default values.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

        /**
         * Retrieves a paginated list of related queries based on the provided pager parameters.
         * This method performs a database query with pagination and updates the pager with result information.
         *
         * @param relatedQueryPager the pager containing pagination parameters and search conditions
         * @return a list of RelatedQuery entities matching the search criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java

        }
    
        /**
         * Gets the list of page numbers for pagination.
         *
         * @return The list of page numbers
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers for pagination.
         *
         * @param pageNumberList The list of page numbers
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

    import java.util.List;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for related content management that provides pagination functionality
     * for displaying related content items in the admin interface.
     * This class handles pagination state including current page number, page size,
     * total record count, and navigation controls.
     */
    public class RelatedContentPager implements Serializable {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                        <div class="row">
                                            <div class="col-sm-12 text-center">
                                                <ul class="pagination pagination-sm justify-content-center">
                                                    <c:if test="${existPrevPage}">
                                                        <li class="page-item"><la:link
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 24 13:09:22 UTC 2020
    - 20K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.jsp

                                        </div>
                                        <div class="col-sm-10">
                                            <ul class="pagination pagination-sm m-0 float-right">
                                                <c:if test="${pager.existPrePage}">
                                                    <li class="page-item"><la:link
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.jsp

                                        </div>
                                        <div class="col-sm-10">
                                            <ul class="pagination pagination-sm m-0 float-right">
                                                <c:if test="${pager.existPrePage}">
                                                    <li class="page-item"><la:link
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
Back to top