- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for SmbAuthentication (0.1 sec)
-
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) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationTest.java
public void test_getPathPrefix() { SmbAuthentication smbAuthentication; smbAuthentication = new SmbAuthentication(); assertEquals("smb1://", smbAuthentication.getPathPrefix()); smbAuthentication = new SmbAuthentication(); smbAuthentication.setServer("hoge"); assertEquals("smb1://hoge/", smbAuthentication.getPathPrefix()); smbAuthentication = new SmbAuthentication();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationTest.java
public void test_getPathPrefix() { SmbAuthentication smbAuthentication; smbAuthentication = new SmbAuthentication(); assertEquals("smb://", smbAuthentication.getPathPrefix()); smbAuthentication = new SmbAuthentication(); smbAuthentication.setServer("hoge"); assertEquals("smb://hoge/", smbAuthentication.getPathPrefix()); smbAuthentication = new SmbAuthentication();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.5K 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/test/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolderTest.java
final SmbAuthentication hogeAuth = new SmbAuthentication(); hogeAuth.setServer("hoge"); smbAuthenticationHolder.add(hogeAuth); final SmbAuthentication fugaAuth = new SmbAuthentication(); fugaAuth.setServer("fuga"); smbAuthenticationHolder.add(fugaAuth); final SmbAuthentication fooAuth = new SmbAuthentication(); fooAuth.setServer("foo");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolderTest.java
final SmbAuthentication hogeAuth = new SmbAuthentication(); hogeAuth.setServer("hoge"); smbAuthenticationHolder.add(hogeAuth); final SmbAuthentication fugaAuth = new SmbAuthentication(); fugaAuth.setServer("fuga"); smbAuthenticationHolder.add(fugaAuth); final SmbAuthentication fooAuth = new SmbAuthentication(); fooAuth.setServer("foo");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
// 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<>(); final List<FtpAuthentication> ftpAuthList = new ArrayList<>(); for (final FileAuthentication fileAuth : fileAuthList) {
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/SmbClient.java
* * @param smbAuthentication the SMB authentication information * @return the NTLM password authenticator */ protected NtlmPasswordAuthenticator getAuthenticator(final SmbAuthentication smbAuthentication) { return new NtlmPasswordAuthenticator(smbAuthentication.getDomain() == null ? "" : smbAuthentication.getDomain(), smbAuthentication.getUsername(), smbAuthentication.getPassword());
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/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)