org.apache.ftpserver.remote.interfaces
Interface FtpConnectionObserver

All Superinterfaces:
Remote

public interface FtpConnectionObserver
extends Remote

This observer interface monitors all the ftp connections.

Author:
Rana Bhattacharyya

Method Summary
 void newConnection(FtpUser user)
          New connection notification.
 void removeConnection(FtpUser user)
          Close connection notification
 void updateConnection(FtpUser user)
          Update connection notification
 

Method Detail

newConnection

void newConnection(FtpUser user)
                   throws RemoteException
New connection notification.

Parameters:
user - new connected user.
Throws:
RemoteException

removeConnection

void removeConnection(FtpUser user)
                      throws RemoteException
Close connection notification

Parameters:
user - closed user object
Throws:
RemoteException

updateConnection

void updateConnection(FtpUser user)
                      throws RemoteException
Update connection notification

Parameters:
user - updated user
Throws:
RemoteException


Copyright © 2001-2012 Codehaus. All Rights Reserved.