|
Secure FTP Factory | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface FxpListener
Implements methods for capturing events sourced from Fxp and Fxps classes.
Typicaly your application will implement this interface to capture the following events :FxpStartEvent
FxpEndEvent
FxpFailedEvent
In addition to implementing this interface your application should register itself as an EventListener which may look somewhat like this:
public class Application ... implements FxpListener { ... public ... initMethod(...) { Fxp fxp = new Fxp(); fxp.addFxpListener(this); } ... }
Method Summary | |
---|---|
void |
fxpEnd(FxpEndEvent ev)
Invoked when FXP transfer ends for a file. |
void |
fxpFailed(FxpFailedEvent ev)
Invoked when FXP transfer fails for a file. |
void |
fxpStart(FxpStartEvent ev)
Invoked when FXP transfer starts for a file. |
Method Detail |
---|
void fxpStart(FxpStartEvent ev)
ev
- a FxpStartEvent
FxpStartEvent
void fxpEnd(FxpEndEvent ev)
ev
- a FxpEndEvent
FxpEndEvent
void fxpFailed(FxpFailedEvent ev)
ev
- a FxpFailedEvent
FxpFailedEvent
|
Secure FTP Factory | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |