- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for FtpAuthentication (0.07 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
import org.codelibs.core.lang.StringUtil; /** * FtpAuthentication class holds the authentication information for FTP connections. * It includes server address, port number, username, and password. * It also provides a method to check if the authentication matches a given FTP path. * * @author shinsuke */ public class FtpAuthentication {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java
// Default constructor } /** * Adds an FtpAuthentication object to the holder. * @param auth The FtpAuthentication object to add. */ public void add(final FtpAuthentication auth) { if (auth != null) { authenticationList.add(auth); } } /** * Retrieves an FtpAuthentication object that matches the given path. * @param path The path to match.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationTest.java
import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class FtpAuthenticationTest extends PlainTestCase { public void test_matches() throws Exception { FtpAuthentication auth = new FtpAuthentication(); auth.setServer("hostname"); auth.setPort(21); auth.setUsername("testuser"); auth.setPassword("testpass");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 3.8K bytes - Viewed (0)