- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for smbAuthentications (0.11 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
final SmbAuthenticationHolder holder = new SmbAuthenticationHolder(); final SmbAuthentication[] smbAuthentications = getInitParameter(SMB_AUTHENTICATIONS_PROPERTY, new SmbAuthentication[0], SmbAuthentication[].class); if (smbAuthentications != null) { for (final SmbAuthentication smbAuthentication : smbAuthentications) { if (logger.isDebugEnabled()) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 22.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
final SmbAuthentication[] smbAuthentications = getInitParameter(SMB_AUTHENTICATIONS_PROPERTY, new SmbAuthentication[0], SmbAuthentication[].class); if (smbAuthentications != null) { for (final SmbAuthentication smbAuthentication : smbAuthentications) { holder.add(smbAuthentication); } }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 23K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
Map<String, Object> params = new HashMap<>(); SmbAuthentication auth1 = new SmbAuthentication(); auth1.setUsername("testuser1"); auth1.setPassword("test123"); SmbAuthentication[] auths = new SmbAuthentication[] { auth1 }; params.put("smbAuthentications", auths); smbClient.setInitParameterMap(params); smbClient.init();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 13.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthentication.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
ftpAuthList.add(ftpAuth); } } paramMap.put(Param.Client.SMB_AUTHENTICATIONS, smbAuthList.toArray(new SmbAuthentication[smbAuthList.size()])); if (logger.isDebugEnabled()) { smbAuthList.forEach(smbAuth -> logger .debug("SmbAuthentication: " + smbAuth.getServer() + ":" + smbAuth.getPort() + " " + smbAuth.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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolder.java
* the corresponding SmbAuthentication object is returned. * </p> * * @param path The path for which to retrieve the SmbAuthentication. * If null, the method returns null. * @return The SmbAuthentication associated with the path, or null if no * matching authentication is found or if the path is null. */ public SmbAuthentication get(final String path) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java
*/ public void add(final SmbAuthentication auth) { authMap.put(auth.getPathPrefix(), auth); } /** * Retrieves an SMB authentication configuration that matches the given path. * @param path The path to match. * @return The matching SmbAuthentication object, or null if no match is found. */ public SmbAuthentication get(final String path) { if (path == null) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
if (StringUtil.isNotBlank(fileAuthStr)) { final String[] fileAuthNames = fileAuthStr.split(","); final List<SmbAuthentication> smbAuthList = new ArrayList<>(); final List<org.codelibs.fess.crawler.client.smb1.SmbAuthentication> smb1AuthList = new ArrayList<>(); final List<FtpAuthentication> ftpAuthList = new ArrayList<>(); for (final String fileAuthName : fileAuthNames) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.6K bytes - Viewed (0)