- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for FtpAuthenticationHolder (0.13 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java
*/ package org.codelibs.fess.crawler.client.ftp; import java.util.ArrayList; import java.util.List; /** * @author shinsuke * */ public class FtpAuthenticationHolder { List<FtpAuthentication> authList = new ArrayList<>(); public void add(final FtpAuthentication auth) { authList.add(auth); } public FtpAuthentication get(final String path) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
this.useEPSVwithIPv4 = useEPSVwithIPv4; } public void setFtpAuthenticationHolder(final FtpAuthenticationHolder ftpAuthenticationHolder) { this.ftpAuthenticationHolder = ftpAuthenticationHolder; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25.7K bytes - Viewed (0)