org.apache.ftpserver.interfaces
Interface FtpFileListener

All Known Implementing Classes:
FtpFileListenerAdapter

public interface FtpFileListener

Ftp file upload/download/delete listener interface.

Author:
Rana Bhattacharyya

Method Summary
 void notifyDelete(java.io.File file, java.lang.String sessionId)
          User file delete notification.
 void notifyDownload(java.io.File file, java.lang.String sessionId)
          User file download notification.
 void notifyUpload(java.io.File file, java.lang.String sessionId)
          User file upload notification.
 

Method Detail

notifyUpload

public void notifyUpload(java.io.File file,
                         java.lang.String sessionId)
User file upload notification.


notifyDownload

public void notifyDownload(java.io.File file,
                           java.lang.String sessionId)
User file download notification.


notifyDelete

public void notifyDelete(java.io.File file,
                         java.lang.String sessionId)
User file delete notification.



Copyright © 2001-2007 Codehaus. All Rights Reserved.