Package javax.mail.event
Class StoreEvent
- java.lang.Object
-
- java.util.EventObject
-
- javax.mail.event.MailEvent
-
- javax.mail.event.StoreEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class StoreEvent extends MailEvent
This class models notifications from the Store connection. These notifications can be ALERTS or NOTICES. ALERTS must be presented to the user in a fashion that calls the user's attention to the message.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
ALERT
Indicates that this message is an ALERT.protected java.lang.String
message
The message text to be presented to the user.static int
NOTICE
Indicates that this message is a NOTICE.private static long
serialVersionUID
protected int
type
The event type.
-
Constructor Summary
Constructors Constructor Description StoreEvent(Store store, int type, java.lang.String message)
Construct a StoreEvent.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispatch(java.lang.Object listener)
Invokes the appropriate StoreListener method.java.lang.String
getMessage()
Get the message from the Store.int
getMessageType()
Return the type of this event.
-
-
-
Field Detail
-
ALERT
public static final int ALERT
Indicates that this message is an ALERT.- See Also:
- Constant Field Values
-
NOTICE
public static final int NOTICE
Indicates that this message is a NOTICE.- See Also:
- Constant Field Values
-
type
protected int type
The event type.
-
message
protected java.lang.String message
The message text to be presented to the user.
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StoreEvent
public StoreEvent(Store store, int type, java.lang.String message)
Construct a StoreEvent.- Parameters:
store
- the source Storetype
- the event typemessage
- a message assoicated with the event
-
-