Class AbstractFtpSessionFactory<T extends org.apache.commons.net.ftp.FTPClient>

java.lang.Object
org.springframework.integration.ftp.session.AbstractFtpSessionFactory<T>
Type Parameters:
T - The FTPClient type
All Implemented Interfaces:
SessionFactory<org.apache.commons.net.ftp.FTPFile>
Direct Known Subclasses:
DefaultFtpSessionFactory, DefaultFtpsSessionFactory

public abstract class AbstractFtpSessionFactory<T extends org.apache.commons.net.ftp.FTPClient> extends Object implements SessionFactory<org.apache.commons.net.ftp.FTPFile>
Base class for FTP SessionFactory implementations.
Since:
2.0
Author:
Iwein Fuld, Mark Fisher, Oleg Zhurakousky
  • Field Details Link icon

    • logger Link icon

      protected final Log logger
  • Constructor Details Link icon

    • AbstractFtpSessionFactory Link icon

      public AbstractFtpSessionFactory()
  • Method Details Link icon

    • setFileType Link icon

      public void setFileType(int fileType)
      File types defined by FTP constants:
      • FTP.ASCII_FILE_TYPE
      • FTP.EBCDIC_FILE_TYPE
      • FTP.BINARY_FILE_TYPE (DEFAULT)
      • FTP.LOCAL_FILE_TYPE
      .
      Parameters:
      fileType - The file type.
    • setControlEncoding Link icon

      public void setControlEncoding(String controlEncoding)
    • setConfig Link icon

      public void setConfig(org.apache.commons.net.ftp.FTPClientConfig config)
    • setBufferSize Link icon

      public void setBufferSize(int bufferSize)
    • setHost Link icon

      public void setHost(String host)
    • setPort Link icon

      public void setPort(int port)
    • setUsername Link icon

      public void setUsername(String user)
    • setPassword Link icon

      public void setPassword(String pass)
    • setClientMode Link icon

      public void setClientMode(int clientMode)
      ACTIVE_LOCAL_DATA_CONNECTION_MODE = 0
      A constant indicating the FTP session is expecting all transfers to occur between the client (local) and server and that the server should connect to the client's data port to initiate a data transfer. This is the default data connection mode when and FTPClient instance is created. PASSIVE_LOCAL_DATA_CONNECTION_MODE = 2
      A constant indicating the FTP session is expecting all transfers to occur between the client (local) and server and that the server is in passive mode, requiring the client to connect to the server's data port to initiate a transfer.
      Parameters:
      clientMode - The client mode.
    • setConnectTimeout Link icon

      public void setConnectTimeout(int connectTimeout)
      Set the connect timeout for the socket.
      Parameters:
      connectTimeout - the timeout
    • setDefaultTimeout Link icon

      public void setDefaultTimeout(int defaultTimeout)
      Set the (socket option) timeout on the command socket.
      Parameters:
      defaultTimeout - the timeout.
    • setDataTimeout Link icon

      public void setDataTimeout(int dataTimeout)
      Set the (socket option) timeout on the data connection.
      Parameters:
      dataTimeout - the timeout.
    • getSession Link icon

      public FtpSession getSession()
      Specified by:
      getSession in interface SessionFactory<T extends org.apache.commons.net.ftp.FTPClient>
    • createClientInstance Link icon

      protected abstract T createClientInstance()
    • postProcessClientAfterConnect Link icon

      protected void postProcessClientAfterConnect(T t) throws IOException
      Will handle additional initialization after client.connect() method was invoked, but before any action on the client has been taken.
      Parameters:
      t - The client.
      Throws:
      IOException - Any IOException
    • postProcessClientBeforeConnect Link icon

      protected void postProcessClientBeforeConnect(T client) throws IOException
      Will handle additional initialization before client.connect() method was invoked.
      Parameters:
      client - The client.
      Throws:
      IOException - Any IOException.