All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.as400.access.FTPEvent
java.lang.Object
|
+----java.util.EventObject
|
+----com.ibm.as400.access.FTPEvent
- public class FTPEvent
- extends EventObject
The FTPEvent class represents an ftp event.
-
FTP_CONNECTED
- Event ID indicating that a connection to the server has been created.
-
FTP_DISCONNECTED
- Event ID indicating that the connection to the server has been disconnected.
-
FTP_LISTED
- Event ID indicating that a list of files on the server has been retrieved.
-
FTP_PUT
- Event ID indicating that a file has been put to the server.
-
FTP_RETRIEVED
- Event ID indicating that a file has been retrieved from the server.
-
FTPEvent(Object, int)
- Constructs an FTPEvent object.
-
getID()
- Returns the identifier for this event.
FTP_CONNECTED
public static final int FTP_CONNECTED
- Event ID indicating that a connection to the server has been created.
FTP_DISCONNECTED
public static final int FTP_DISCONNECTED
- Event ID indicating that the connection to the server has been disconnected.
FTP_RETRIEVED
public static final int FTP_RETRIEVED
- Event ID indicating that a file has been retrieved from the server.
FTP_PUT
public static final int FTP_PUT
- Event ID indicating that a file has been put to the server.
FTP_LISTED
public static final int FTP_LISTED
- Event ID indicating that a list of files on the server has been retrieved.
FTPEvent
public FTPEvent(Object source,
int id)
- Constructs an FTPEvent object.
- Parameters:
- source - The object where the event originated.
- id - The event identifier.
getID
public int getID()
- Returns the identifier for this event.
- Returns:
- The identifier for this event.
All Packages Class Hierarchy This Package Previous Next Index