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
A store notification event.- Version:
- 1.4
- Author:
- Chris Burdess
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StoreEvent(Store source, int type, java.lang.String message)
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.java.lang.String
getMessage()
Returns the notification message.int
getMessageType()
Returns 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.
-
-
Constructor Detail
-
StoreEvent
public StoreEvent(Store source, int type, java.lang.String message)
Constructor.- Parameters:
source
- the storetype
- the type of event (ALERT or NOTICE)message
- the notification message
-
-