- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 51 for paging (0.03 sec)
-
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
*/ @Resource protected RelatedQueryBhv relatedQueryBhv; /** * Configuration properties for Fess application. * Used to access various configuration settings like paging parameters. */ @Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of related queries based on the provided pager parameters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
*/ @Resource protected DuplicateHostBhv duplicateHostBhv; /** * Fess configuration containing application settings. * Used to retrieve paging and other configuration parameters. */ @Resource protected FessConfig fessConfig; /** * Creates a new instance of DuplicateHostService.
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/RoleService.java
* @return A list of roles. */ public List<Role> getRoleList(final RolePager rolePager) { final PagingResultBean<Role> roleList = roleBhv.selectPage(cb -> { cb.paging(rolePager.getPageSize(), rolePager.getCurrentPageNumber()); setupListCondition(cb, rolePager); }); // update pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
* @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()); setupListCondition(cb, groupPager); }); // 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/PathMappingService.java
/** * Gets the path mapping list with paging. * * @param pathMappingPager the path mapping pager * @return the path mapping list */ public List<PathMapping> getPathMappingList(final PathMapPager pathMappingPager) { final PagingResultBean<PathMapping> pathMappingList = pathMappingBhv.selectPage(cb -> { cb.paging(pathMappingPager.getPageSize(), pathMappingPager.getCurrentPageNumber());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
*/ public List<AccessToken> getAccessTokenList(final AccessTokenPager accessTokenPager) { final PagingResultBean<AccessToken> accessTokenList = accessTokenBhv.selectPage(cb -> { cb.paging(accessTokenPager.getPageSize(), accessTokenPager.getCurrentPageNumber()); setupListCondition(cb, accessTokenPager); }); // update pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleTypeService.java
* @return A list of role types. */ public List<RoleType> getRoleTypeList(final RoleTypePager roleTypePager) { final PagingResultBean<RoleType> roleTypeList = roleTypeBhv.selectPage(cb -> { cb.paging(roleTypePager.getPageSize(), roleTypePager.getCurrentPageNumber()); setupListCondition(cb, roleTypePager); }); // update pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
*/ package org.codelibs.fess.app.pager; import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager for duplicate host management with standard paging functionality. * This class provides pagination support for duplicate host listings in the admin interface, * including navigation controls and search/filter parameters. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/LabelTypeService.java
*/ public List<LabelType> getLabelTypeList(final LabelTypePager labelTypePager) { final PagingResultBean<LabelType> labelTypeList = labelTypeBhv.selectPage(cb -> { cb.paging(labelTypePager.getPageSize(), labelTypePager.getCurrentPageNumber()); setupListCondition(cb, labelTypePager); }); // update pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
public List<RelatedContent> getRelatedContentList(final RelatedContentPager relatedContentPager) { final PagingResultBean<RelatedContent> relatedContentList = relatedContentBhv.selectPage(cb -> { cb.paging(relatedContentPager.getPageSize(), relatedContentPager.getCurrentPageNumber()); setupListCondition(cb, relatedContentPager); }); // update pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0)