- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for fileAuthentication (4.3 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileAuthentication.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class FileAuthentication extends BsFileAuthentication { private static final long serialVersionUID = 1L; private static final Logger logger = LogManager.getLogger(FileAuthentication.class); private FileConfig fileConfig; public String getId() { return asDocMeta().id(); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileAuthenticationBhv.java
} @Override protected Class<? extends FileAuthentication> typeOfSelectedEntity() { return FileAuthentication.class; } @Override protected Class<FileAuthentication> typeOfHandlingEntity() { return FileAuthentication.class; } @Override protected Class<FileAuthenticationCB> typeOfHandlingConditionBean() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileAuthenticationDbm.java
(et, vl) -> ((FileAuthentication) et).setPassword(DfTypeUtil.toString(vl)), "password"); setupEpg(_epgMap, et -> ((FileAuthentication) et).getPort(), (et, vl) -> ((FileAuthentication) et).setPort(DfTypeUtil.toInteger(vl)), "port"); setupEpg(_epgMap, et -> ((FileAuthentication) et).getProtocolScheme(),
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
fileAuthentication.setParameters(ParameterUtil.encrypt(fileAuthentication.getParameters())); fileAuthenticationBhv.insertOrUpdate(fileAuthentication, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /** * Deletes a file authentication configuration from the system. *
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
import org.codelibs.fess.app.web.api.ApiResult.Status; import org.codelibs.fess.app.web.api.admin.FessApiAdminAction; import org.codelibs.fess.opensearch.config.exentity.FileAuthentication; import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; /** * API action for admin file authentication management.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
final List<FtpAuthentication> ftpAuthList = new ArrayList<>(); for (final FileAuthentication fileAuth : fileAuthList) { if (logger.isDebugEnabled()) { logger.debug("FileAuthentication: " + fileAuth.getProtocolScheme() + " " + fileAuth.getHostname() + ":" + fileAuth.getPort() + " " + fileAuth.getUsername()); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
* @return optional file authentication entity */ public static OptionalEntity<FileAuthentication> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new FileAuthentication()).map(entity -> { entity.setCreatedBy(username); entity.setCreatedTime(currentTime);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth.jsp
<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="crawl"/> <jsp:param name="menuType" value="fileAuthentication"/> </jsp:include> <main class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2">
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth_details.jsp
<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="crawl"/> <jsp:param name="menuType" value="fileAuthentication"/> </jsp:include> <main class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2">
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
<c:if test="${fe:permission('admin-fileauth-view')}"> <li class="nav-item"> <a href="${fe:url('/admin/fileauth/')}" class="nav-link <c:if test="${param.menuType=='fileAuthentication'}">active</c:if>" <c:if test="${param.menuType=='fileAuthentication'}">aria-current="page"</c:if>> <i class='fa fa-genderless nav-icon' aria-hidden="true"></i> <p><la:message key="labels.menu_file_authentication" /></p> </a></li></c:if>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 21.1K bytes - Viewed (0)