Package jakarta.mail.event
Class ConnectionEvent
- java.lang.Object
 - 
- java.util.EventObject
 - 
- jakarta.mail.event.MailEvent
 - 
- jakarta.mail.event.ConnectionEvent
 
 
 
 
- 
- All Implemented Interfaces:
 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.- 
Fields inherited from class java.util.EventObject
source 
 - 
 
- 
Constructor Summary
Constructors Constructor Description ConnectionEvent(Object source, int type)Construct a ConnectionEvent. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddispatch(Object listener)Invokes the appropriate ConnectionListener methodintgetType()Return the type of this event- 
Methods inherited from class java.util.EventObject
getSource, toString 
 - 
 
 - 
 
- 
- 
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. 
 - 
 
- 
Constructor Detail
- 
ConnectionEvent
public ConnectionEvent(Object source, int type)
Construct a ConnectionEvent.- Parameters:
 source- The source objecttype- the event type
 
 - 
 
 -