- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getUserList (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final UserPager pager = copyBeanToNewBean(body, UserPager.class); final List<User> list = userService.getUserList(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 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
* @param form the search form containing pagination parameters */ protected void searchPaging(final RenderData data, final SearchForm form) { RenderDataUtil.register(data, "userItems", userService.getUserList(userPager)); // page navi // restore from pager copyBeanToBean(userPager, form, op -> op.include("id")); } private void registerForms(final RenderData data) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
* * @param userPager the pager containing search criteria and pagination settings * @return a list of users matching the criteria */ public List<User> getUserList(final UserPager userPager) { final PagingResultBean<User> userList = userBhv.selectPage(cb -> { cb.paging(userPager.getPageSize(), userPager.getCurrentPageNumber());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0)