- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for user_pager (0.03 sec)
-
src/main/java/org/codelibs/fess/app/pager/UserPager.java
* Pager class for handling user list pagination. * This class manages pagination state and user search criteria for the user management interface. */ public class UserPager implements Serializable { /** * Default constructor for UserPager. */ public UserPager() { // Default constructor } private static final long serialVersionUID = 1L; /** Default page size for user list pagination */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.3K 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) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
// PUT /api/admin/user/settings @Execute 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(
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/webapp/WEB-INF/view/admin/user/admin_user.jsp
</la:info> <la:errors/> </div> <%-- List --%> <c:if test="${userPager.allRecordCount == 0}"> <div class="row top10"> <div class="col-sm-12"> <em class="fa fa-info-circle text-primary">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 4.5K bytes - Viewed (0)