- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getFileAuthenticationList (0.69 sec)
-
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
* @param fileAuthenticationPager the pager containing pagination settings and search criteria * @return a list of file authentication configurations for the current page */ public List<FileAuthentication> getFileAuthenticationList(final FileAuthPager fileAuthenticationPager) { final PagingResultBean<FileAuthentication> fileAuthenticationList = fileAuthenticationBhv.selectPage(cb -> {
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/opensearch/config/exentity/FileConfig.java
if (clientConfigMap != null) { paramMap.putAll(clientConfigMap); } // auth params final List<FileAuthentication> fileAuthList = fileAuthenticationService.getFileAuthenticationList(getId()); final List<SmbAuthentication> smbAuthList = new ArrayList<>(); final List<org.codelibs.fess.crawler.client.smb1.SmbAuthentication> smb1AuthList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 03 09:24:53 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
validateApi(body, messages -> {}); final FileAuthPager pager = copyBeanToNewBean(body, FileAuthPager.class); final List<FileAuthentication> list = fileAuthService.getFileAuthenticationList(pager); return asJson( new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList()))
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
*/ protected void searchPaging(final RenderData data, final SearchForm form) { RenderDataUtil.register(data, "fileAuthenticationItems", fileAuthenticationService.getFileAuthenticationList(fileAuthenticationPager)); // page navi RenderDataUtil.register(data, "displayCreateLink", !crawlingConfigHelper.getAllFileConfigList(false, false, false, null).isEmpty()); // restore from pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.2K bytes - Viewed (0)