Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getWebAuthenticationList (0.74 sec)

  1. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

         *
         * @param webAuthenticationPager The pager containing pagination and search criteria
         * @return List of web authentication configurations
         */
        public List<WebAuthentication> getWebAuthenticationList(final WebAuthPager webAuthenticationPager) {
    
            final PagingResultBean<WebAuthentication> webAuthenticationList = webAuthenticationBhv.selectPage(cb -> {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java

            validateApi(body, messages -> {});
            final WebAuthPager pager = copyBeanToNewBean(body, WebAuthPager.class);
            final List<WebAuthentication> list = webAuthService.getWebAuthenticationList(pager);
            return asJson(
                    new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList()))
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.1K bytes
    - Viewed (0)
Back to top