Class EventAdapter

java.lang.Object
com.enterprisedt.net.ftp.EventAdapter
All Implemented Interfaces:
EventListener

public class EventAdapter extends Object implements EventListener
An adapter class that implements dummy methods of the EventListener interface. Useful for quickly implementing a single method of EventListener.
Version:
$Revision$
Author:
Bruce Blackshaw
  • Constructor Details

    • EventAdapter

      public EventAdapter()
  • Method Details

    • commandSent

      public void commandSent(String connId, String cmd)
      Log an FTP command being sent to the server. Not used for SFTP.
      Specified by:
      commandSent in interface EventListener
      Parameters:
      connId - Identifier of FTP connection
      cmd - command string
    • replyReceived

      public void replyReceived(String connId, String reply)
      Log an FTP reply being sent back to the client. Not used for SFTP.
      Specified by:
      replyReceived in interface EventListener
      Parameters:
      connId - Identifier of FTP connection
      reply - reply string
    • bytesTransferred

      public void bytesTransferred(String connId, String remoteFilename, long count)
      Report the number of bytes transferred so far. This may not be entirely accurate for transferring text files in ASCII mode, as new line representations can be represented differently on different platforms.
      Specified by:
      bytesTransferred in interface EventListener
      Parameters:
      connId - Identifier of FTP connection
      remoteFilename - Name of remote file
      count - count of bytes transferred
    • downloadStarted

      public void downloadStarted(String connId, String remoteFilename)
      Notifies that a download has started
      Specified by:
      downloadStarted in interface EventListener
      Parameters:
      connId - Identifier of FTP connection
      remoteFilename - remote file name
    • downloadCompleted

      public void downloadCompleted(String connId, String remoteFilename)
      Notifies that a download has completed
      Specified by:
      downloadCompleted in interface EventListener
      Parameters:
      connId - Identifier of FTP connection
      remoteFilename - remote file name
    • uploadStarted

      public void uploadStarted(String connId, String remoteFilename)
      Notifies that an upload has started
      Specified by:
      uploadStarted in interface EventListener
      Parameters:
      connId - Identifier of FTP connection
      remoteFilename - remote file name
    • uploadCompleted

      public void uploadCompleted(String connId, String remoteFilename)
      Notifies that an upload has completed
      Specified by:
      uploadCompleted in interface EventListener
      Parameters:
      connId - Identifier of FTP connection
      remoteFilename - remote file name