- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for WebAuthPager (0.08 sec)
-
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
/** * Pager class for web authentication configurations. * Provides pagination functionality and search criteria for web authentication listings. */ public class WebAuthPager implements Serializable { /** * Default constructor. */ public WebAuthPager() { // Default constructor } private static final long serialVersionUID = 1L; /** * Default page size for pagination. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
@Resource private WebAuthenticationService webAuthenticationService; /** Pager for paginating web authentication results */ @Resource private WebAuthPager webAuthPager; /** Service for accessing and modifying web configuration settings */ @Resource protected WebConfigService webConfigService;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
*/ package org.codelibs.fess.app.service; import java.util.List; import org.codelibs.core.beans.util.BeanUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.app.pager.WebAuthPager; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.opensearch.config.cbean.WebAuthenticationCB; import org.codelibs.fess.opensearch.config.exbhv.WebAuthenticationBhv;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth.jsp
<la:errors/> </div> <%-- List --%> <c:if test="${webAuthPager.allRecordCount == 0}"> <div class="row top10"> <div class="col-sm-12">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Mar 24 13:43:18 UTC 2020 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
// PUT /api/admin/webauth/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final WebAuthPager pager = copyBeanToNewBean(body, WebAuthPager.class); final List<WebAuthentication> list = webAuthService.getWebAuthenticationList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0)