Package javax.mail.event
Class ConnectionEvent
- java.lang.Object
-
- java.util.EventObject
-
- javax.mail.event.MailEvent
-
- javax.mail.event.ConnectionEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class ConnectionEvent extends MailEvent
A connection event.- Version:
- 1.4
- Author:
- Chris Burdess
- 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.
-
Constructor Summary
Constructors Constructor Description ConnectionEvent(java.lang.Object source, int type)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispatch(java.lang.Object listener)
Invokes the appropriate listener method.int
getType()
Returns 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.
-
-