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.


Variable Index

 o FTP_CONNECTED
Event ID indicating that a connection to the server has been created.
 o FTP_DISCONNECTED
Event ID indicating that the connection to the server has been disconnected.
 o FTP_LISTED
Event ID indicating that a list of files on the server has been retrieved.
 o FTP_PUT
Event ID indicating that a file has been put to the server.
 o FTP_RETRIEVED
Event ID indicating that a file has been retrieved from the server.

Constructor Index

 o FTPEvent(Object, int)
Constructs an FTPEvent object.

Method Index

 o getID()
Returns the identifier for this event.

Variables

 o FTP_CONNECTED
 public static final int FTP_CONNECTED
Event ID indicating that a connection to the server has been created.

 o FTP_DISCONNECTED
 public static final int FTP_DISCONNECTED
Event ID indicating that the connection to the server has been disconnected.

 o FTP_RETRIEVED
 public static final int FTP_RETRIEVED
Event ID indicating that a file has been retrieved from the server.

 o FTP_PUT
 public static final int FTP_PUT
Event ID indicating that a file has been put to the server.

 o FTP_LISTED
 public static final int FTP_LISTED
Event ID indicating that a list of files on the server has been retrieved.

Constructors

 o FTPEvent
 public FTPEvent(Object source,
                 int id)
Constructs an FTPEvent object.

Parameters:
source - The object where the event originated.
id - The event identifier.

Methods

 o 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