- java.lang.Object
-
- java.util.EventObject
-
- jakarta.mail.event.MailEvent
-
- jakarta.mail.event.ConnectionEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class ConnectionEvent extends MailEvent
This class models Connection events.- Author:
- John Mani
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intCLOSEDA connection was closed.static intDISCONNECTEDA connection was disconnected (not currently used).static intOPENEDA connection was opened.protected inttypeThe event type.
-
Constructor Summary
Constructors Constructor Description ConnectionEvent(java.lang.Object source, int type)Construct a ConnectionEvent.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddispatch(java.lang.Object listener)Invokes the appropriate ConnectionListener methodintgetType()Return the type of this event
-
-
-
Field Detail
-
OPENED
public static final int OPENED
A connection was opened.- See Also:
- Constant Field Values
-
DISCONNECTED
public static final int DISCONNECTED
A connection was disconnected (not currently used).- See Also:
- Constant Field Values
-
CLOSED
public static final int CLOSED
A connection was closed.- See Also:
- Constant Field Values
-
type
protected int type
The event type.
-
-