- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getFileAuthentication (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.fileauth; import static org.codelibs.fess.app.web.admin.fileauth.AdminFileauthAction.getFileAuthentication; import java.util.List; import java.util.stream.Collectors; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.fess.app.pager.FileAuthPager;
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
@Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, this::asListHtml); final String id = form.id; fileAuthenticationService.getFileAuthentication(id).ifPresent(entity -> { copyBeanToBean(entity, form, op -> {}); }).orElse(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
* @return an OptionalEntity containing the file authentication if found, empty otherwise */ public OptionalEntity<FileAuthentication> getFileAuthentication(final String id) { return fileAuthenticationBhv.selectByPK(id); } /** * Stores a file authentication configuration. * The parameters are encrypted before storage for security. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0)