Package org.h2.dev.ftp.server
Interface FtpEventListener
- All Known Implementing Classes:
TestFtp
public interface FtpEventListener
Event listener for the FTP Server.
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterCommand(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 Details
-
beforeCommand
Called before the given command is processed.- Parameters:
event- the event
-
afterCommand
Called after the command has been processed.- Parameters:
event- the event
-
onUnsupportedCommand
Called when an unsupported command is processed. This method is called after beforeCommand.- Parameters:
event- the event
-