HomeSort by relevance Sort by last modified time
    Searched refs:FtpClient (Results 1 - 5 of 5) sorted by null

  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpClient.java 43 * {@code FtpClient} provides all the functionalities of a typical FTP
49 * FtpClient cl = FtpClient.create();
75 public abstract class FtpClient implements java.io.Closeable {
94 * Creates an instance of FtpClient. The client is not connected to any
98 protected FtpClient() {
102 * Creates an instance of {@code FtpClient}. The client is not connected to any
105 * @return the created {@code FtpClient}
107 public static FtpClient create() {
113 * Creates an instance of FtpClient and connects it to the specifie
    [all...]
FtpClientProvider.java 33 * Service provider class for FtpClient.
34 * Sub-classes of FtpClientProvider provide an implementation of {@link FtpClient}
43 * Creates a FtpClient from this provider.
45 * @return The created {@link FtpClient}.
47 public abstract FtpClient createFtpClient();
  /libcore/ojluni/src/main/java/sun/net/ftp/impl/
DefaultFtpClientProvider.java 29 * Uses sun.net.ftp.FtpCLient.
34 public sun.net.ftp.FtpClient createFtpClient() {
35 return sun.net.ftp.impl.FtpClient.create();
FtpClient.java 51 public class FtpClient extends sun.net.ftp.FtpClient {
56 PlatformLogger.getLogger("sun.net.ftp.FtpClient");
812 * Creates an instance of FtpClient. The client is not connected to any
816 protected FtpClient() {
820 * Creates an instance of FtpClient. The client is not connected to any
824 public static sun.net.ftp.FtpClient create() {
825 return new FtpClient();
834 * @return This FtpClient
837 public sun.net.ftp.FtpClient enablePassiveMode(boolean passive)
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
FtpURLConnection.java 55 import sun.net.ftp.FtpClient;
80 * @see sun.net.ftp.FtpClient
95 FtpClient ftp = null;
121 * - The command socket (FtpClient).
125 FtpClient ftp;
126 FtpInputStream(FtpClient cl, InputStream fd) {
144 * - The command socket (FtpClient).
148 FtpClient ftp;
149 FtpOutputStream(FtpClient cl, OutputStream fd) {
317 ftp = FtpClient.create()
    [all...]

Completed in 90 milliseconds