- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for GroupPager (0.04 sec)
-
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * GroupPager provides pagination functionality for group management operations in Fess. * This class manages the state and metadata required for paginated display of group lists, * including page navigation, record counts, and search criteria. * */ public class GroupPager implements Serializable { /** Serial version UID for serialization compatibility. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
* * @param groupPager the pager containing pagination and search criteria * @return a list of groups matching the criteria */ public List<Group> getGroupList(final GroupPager groupPager) { final PagingResultBean<Group> groupList = groupBhv.selectPage(cb -> { cb.paging(groupPager.getPageSize(), groupPager.getCurrentPageNumber());
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/web/admin/group/AdminGroupAction.java
/** Service for group operations. */ @Resource private GroupService groupService; /** Pager for group list pagination. */ @Resource private GroupPager groupPager; // =================================================================================== // Hook
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/group/admin_group.jsp
</la:info> <la:errors/> </div> <%-- List --%> <c:if test="${groupPager.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) -
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
*/ @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final GroupPager pager = copyBeanToNewBean(body, GroupPager.class); final List<Group> list = groupService.getGroupList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8K bytes - Viewed (0)