- java.lang.Object
- 
- java.util.EventObject
- 
- jakarta.mail.event.MailEvent
- 
- jakarta.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.- Author:
- John Mani
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description StoreEvent(Store store, int type, java.lang.String message)Construct a StoreEvent.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddispatch(java.lang.Object listener)Invokes the appropriate StoreListener method.java.lang.StringgetMessage()Get the message from the Store.intgetMessageType()Return the type of this event.
 
- 
- 
- 
Field Detail- 
ALERTpublic static final int ALERT Indicates that this message is an ALERT.- See Also:
- Constant Field Values
 
 - 
NOTICEpublic static final int NOTICE Indicates that this message is a NOTICE.- See Also:
- Constant Field Values
 
 - 
typeprotected int type The event type.
 - 
messageprotected java.lang.String message The message text to be presented to the user.
 
- 
 - 
Constructor Detail- 
StoreEventpublic StoreEvent(Store store, int type, java.lang.String message) Construct a StoreEvent.- Parameters:
- store- the source Store
- type- the event type
- message- a message assoicated with the event
 
 
- 
 
-