- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 503 for pager (0.01 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
final WebAuthPager pager = copyBeanToNewBean(body, WebAuthPager.class); final List<WebAuthentication> list = webAuthService.getWebAuthenticationList(pager); return asJson( new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList())) .total(pager.getAllRecordCount())
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
validateApi(body, messages -> {}); final AccessTokenPager pager = copyBeanToNewBean(body, AccessTokenPager.class); final List<AccessToken> list = accessTokenService.getAccessTokenList(pager); return asJson(new ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList())) .total(pager.getAllRecordCount()) .status(Status.OK)
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/service/UserService.java
@Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of users based on the provided pager criteria. * Updates the pager with pagination information including total count and page navigation. * * @param userPager the pager containing search criteria and pagination settings * @return a list of users matching the criteria */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/role/admin_role.jsp
<c:set var="pager" value="${rolePager}" 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/role/list/${pager.allPageCount}";</script> </c:if>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 4.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/group/admin_group.jsp
<c:set var="pager" value="${groupPager}" 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/group/list/${pager.allPageCount}";</script> </c:if>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java
final FileConfigPager pager = copyBeanToNewBean(body, FileConfigPager.class); final List<FileConfig> list = fileConfigService.getFileConfigList(pager); return asJson( new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList())) .total(pager.getAllRecordCount())
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth.jsp
<c:set var="pager" value="${fileAuthPager}" 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/fileauth/list/${pager.allPageCount}";</script>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Mar 27 06:24:23 UTC 2020 - 6.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc.jsp
</div> <c:set var="pager" value="${boostDocPager}" 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 31 05:47:05 UTC 2020 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
validateApi(body, messages -> {}); final BadWordPager pager = copyBeanToNewBean(body, BadWordPager.class); final List<BadWord> list = badWordService.getBadWordList(pager); return asJson( new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList())) .total(pager.getAllRecordCount()) .status(ApiResult.Status.OK)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0)