Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for WebAuthPager (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/app/pager/WebAuthPagerTest.java

            webAuthPager.username = "testUser";
            webAuthPager.webConfigId = "webConfig1";
            webAuthPager.versionNo = "1";
            webAuthPager.setAllRecordCount(100);
            webAuthPager.setAllPageCount(10);
            webAuthPager.setExistPrePage(true);
            webAuthPager.setExistNextPage(true);
    
            webAuthPager.clear();
    
            assertNull(webAuthPager.id);
            assertNull(webAuthPager.port);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  2. 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;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  3. 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 empty-list-placeholder"><i class="fa fa-info-circle text-primary" aria-hidden="true"></i>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  4. 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(
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 9.1K bytes
    - Click Count (0)
Back to Top