- 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 SummaryFields 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 SummaryConstructors Constructor Description ConnectionEvent(java.lang.Object source, int type)Construct a ConnectionEvent.
 - 
Method SummaryAll 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- 
OPENEDpublic static final int OPENED A connection was opened.- See Also:
- Constant Field Values
 
 - 
DISCONNECTEDpublic static final int DISCONNECTED A connection was disconnected (not currently used).- See Also:
- Constant Field Values
 
 - 
CLOSEDpublic static final int CLOSED A connection was closed.- See Also:
- Constant Field Values
 
 - 
typeprotected int type The event type.
 
- 
 
-