Package org.h2.dev.ftp.server
Interface FtpEventListener
-
- All Known Implementing Classes:
TestFtp
public interface FtpEventListenerEvent listener for the FTP Server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterCommand(FtpEvent event)Called after the command has been processed.voidbeforeCommand(FtpEvent event)Called before the given command is processed.voidonUnsupportedCommand(FtpEvent event)Called when an unsupported command is processed.
-
-
-
Method Detail
-
beforeCommand
void beforeCommand(FtpEvent event)
Called before the given command is processed.- Parameters:
event- the event
-
afterCommand
void afterCommand(FtpEvent event)
Called after the command has been processed.- Parameters:
event- the event
-
onUnsupportedCommand
void onUnsupportedCommand(FtpEvent event)
Called when an unsupported command is processed. This method is called after beforeCommand.- Parameters:
event- the event
-
-