- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 153 for pagination (0.22 sec)
-
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
* Used for retrieving pagination and other configuration parameters. */ @Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of file configurations based on the provided pager criteria. * This method applies search conditions from the pager and updates the pager with * pagination information including page numbers and result counts. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
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) -
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) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* by sort order, creation time, regular name, and duplicate hostname.</p> * * @param duplicateHostPager the pager containing search criteria and pagination settings * @return a list of DuplicateHost entities matching the search criteria * @throws IllegalArgumentException if duplicateHostPager is null */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
* Supports both GET and PUT requests for retrieving paginated duplicate host configurations. * * @param body search parameters for filtering and pagination * @return JSON response containing duplicate host 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 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
/** Number of results per page */ public String pageSize; /** Current page number for pagination */ public String currentPageNumber; /** Total number of records found */ public String allRecordCount; /** Total number of pages for pagination */ public String allPageCount; /** Flag indicating if there is a next page */ public boolean existNextPage;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1)