- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for SmbAuthenticationHolder (0.11 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java
* This allows for different SMB shares to use different authentication credentials.</p> * */ public class SmbAuthenticationHolder { private final Map<String, SmbAuthentication> authMap = new HashMap<>(); /** * Creates a new SmbAuthenticationHolder instance. */ public SmbAuthenticationHolder() { super(); } /** * Adds an SMB authentication configuration to the holder.Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 2.2K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolder.java
*/ public class SmbAuthenticationHolder { private static final Logger logger = LogManager.getLogger(SmbAuthenticationHolder.class); /** Map of path prefixes to SMB authentication configurations. */ private final Map<String, SmbAuthentication> authMap = new HashMap<>(); /** * Creates a new SmbAuthenticationHolder instance. */ public SmbAuthenticationHolder() {Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 3.1K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolderTest.java
assertEquals(fooAuth, smbAuthenticationHolder.get("smb://foo:1000/text.txt")); assertNull(smbAuthenticationHolder.get(null)); assertNull(smbAuthenticationHolder.get("")); assertNull(smbAuthenticationHolder.get(" ")); assertNull(smbAuthenticationHolder.get("smb://")); assertNull(smbAuthenticationHolder.get("smb://hoge:1000/")); assertNull(smbAuthenticationHolder.get("smb://foo/"));
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 2.3K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolderTest.java
assertEquals(fooAuth, smbAuthenticationHolder.get("smb1://foo:1000/text.txt")); assertNull(smbAuthenticationHolder.get(null)); assertNull(smbAuthenticationHolder.get("")); assertNull(smbAuthenticationHolder.get(" ")); assertNull(smbAuthenticationHolder.get("smb1://")); assertNull(smbAuthenticationHolder.get("smb1://hoge:1000/")); assertNull(smbAuthenticationHolder.get("smb1://foo/"));
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 2.3K bytes - Click Count (0)