- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 201 for paging (0.03 sec)
-
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
public List<WebAuthentication> getWebAuthenticationList(final WebAuthPager webAuthenticationPager) { final PagingResultBean<WebAuthentication> webAuthenticationList = webAuthenticationBhv.selectPage(cb -> { cb.paging(webAuthenticationPager.getPageSize(), webAuthenticationPager.getCurrentPageNumber()); setupListCondition(cb, webAuthenticationPager); }); // update pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
final PagingResultBean<FileAuthentication> fileAuthenticationList = fileAuthenticationBhv.selectPage(cb -> { cb.paging(fileAuthenticationPager.getPageSize(), fileAuthenticationPager.getCurrentPageNumber()); setupListCondition(cb, fileAuthenticationPager); }); // update pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
*/ public List<RequestHeader> getRequestHeaderList(final ReqHeaderPager requestHeaderPager) { final PagingResultBean<RequestHeader> requestHeaderList = requestHeaderBhv.selectPage(cb -> { cb.paging(requestHeaderPager.getPageSize(), requestHeaderPager.getCurrentPageNumber()); setupListCondition(cb, requestHeaderPager); }); // update pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
*/ public List<KeyMatch> getKeyMatchList(final KeyMatchPager keyMatchPager) { final PagingResultBean<KeyMatch> keyMatchList = keyMatchBhv.selectPage(cb -> { cb.paging(keyMatchPager.getPageSize(), keyMatchPager.getCurrentPageNumber()); setupListCondition(cb, keyMatchPager); }); // update pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWord.java
cb.query().setElevateWordId_Equal(getId()); cb.specify().columnLabelTypeId(); cb.paging(fessConfig.getPageLabeltypeMaxFetchSizeAsInteger(), 1); }); final List<String> labelIdList = new ArrayList<>(); for (final ElevateWordToLabel mapping : mappingList) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
*/ public List<FileConfig> getFileConfigList(final FileConfigPager fileConfigPager) { final PagingResultBean<FileConfig> fileConfigList = fileConfigBhv.selectPage(cb -> { cb.paging(fileConfigPager.getPageSize(), fileConfigPager.getCurrentPageNumber()); setupListCondition(cb, fileConfigPager); }); // update pager
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/service/FailureUrlService.java
*/ public List<FailureUrl> getFailureUrlList(final FailureUrlPager failureUrlPager) { final PagingResultBean<FailureUrl> failureUrlList = failureUrlBhv.selectPage(cb -> { cb.paging(failureUrlPager.getPageSize(), failureUrlPager.getCurrentPageNumber()); setupListCondition(cb, failureUrlPager); }); // update pager
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/protwords/ApiAdminDictProtwordsAction.java
/** * Retrieve list of protected words entries for the specified dictionary. * * @param dictId identifier of the dictionary * @param body search criteria and paging parameters * @return JSON response containing list of entries */ // GET /api/admin/dict/protwords/settings/{dictId} @Execute
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/resources/fess_config.properties
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/fe.tld
<example> ${fe:formatNumber(doc.content_length, "###,###")} </example> </function> <function> <description> Returns query parameters for paging. </description> <name>pagingQuery</name> <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.lang.String pagingQuery(java.lang.String)</function-signature>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:38:54 UTC 2025 - 10.3K bytes - Viewed (0)