Package jakarta.mail.event
Class StoreEvent
- java.lang.Object
 - 
- java.util.EventObject
 - 
- jakarta.mail.event.MailEvent
 - 
- jakarta.mail.event.StoreEvent
 
 
 
 
- 
- All Implemented Interfaces:
 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.- Author:
 - John Mani
 - See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static intALERTIndicates that this message is an ALERT.protected StringmessageThe message text to be presented to the user.static intNOTICEIndicates that this message is a NOTICE.protected inttypeThe event type.- 
Fields inherited from class java.util.EventObject
source 
 - 
 
- 
Constructor Summary
Constructors Constructor Description StoreEvent(Store store, int type, String message)Construct a StoreEvent. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddispatch(Object listener)Invokes the appropriate StoreListener method.StringgetMessage()Get the message from the Store.intgetMessageType()Return the type of this event.- 
Methods inherited from class java.util.EventObject
getSource, toString 
 - 
 
 - 
 
- 
- 
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 String message
The message text to be presented to the user. 
 - 
 
- 
Method Detail
- 
getMessageType
public int getMessageType()
Return the type of this event. 
- 
getMessage
public String getMessage()
Get the message from the Store.- Returns:
 - message from the Store
 
 
 - 
 
 -