- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for file_authentication (0.09 sec)
-
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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
dbflute_fess/dfprop/esfluteMap.dfprop
} ; fess_config.failure_url = map:{ ; package = config ; esclientDiFile = esclient.xml ; esfluteDiFile = esflute_config.xml } ; fess_config.file_authentication = map:{ ; package = config ; esclientDiFile = esclient.xml ; esfluteDiFile = esflute_config.xml } ; fess_config.file_config = map:{ ; package = config
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Nov 06 13:45:02 UTC 2024 - 6.3K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFileAuthenticationCB.java
@Override public FileAuthenticationDbm asDBMeta() { return FileAuthenticationDbm.getInstance(); } @Override public String asTableDbName() { return "file_authentication"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileAuthentication.java
@Override public FileAuthenticationDbm asDBMeta() { return FileAuthenticationDbm.getInstance(); } @Override public String asTableDbName() { return "file_authentication"; } // =================================================================================== // Source
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/resources/esclient.xml
</postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_config.failure_url/failure_url"</arg> </postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_config.file_authentication/file_authentication"</arg> </postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_config.file_config/file_config"</arg> </postConstruct> <postConstruct name="addIndexConfig">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Nov 06 13:45:02 UTC 2024 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsFileAuthenticationCQ.java
// ============= @Override public String asTableDbName() { return "file_authentication"; } @Override public String xgetAliasName() { return "file_authentication"; } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 88.1K bytes - Viewed (0) -
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: Thu Sep 04 12:52:25 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/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: 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/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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0)