Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WebAuthPager (1.11 sec)

  1. 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)
  2. 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)
  3. 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)
  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(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.1K bytes
    - Viewed (0)
Back to top