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 int
CLOSED
A connection was closed.static int
DISCONNECTED
A connection was disconnected (not currently used).static int
OPENED
A connection was opened.protected int
type
The 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 void
dispatch(Object listener)
Invokes the appropriate ConnectionListener methodint
getType()
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
-
-