java.lang.Object | ||
↳ | java.util.EventObject | |
↳ | javax.management.Notification |
![]() |
The Notification class represents a notification emitted by an MBean. It contains a reference to the source MBean: if the notification has been forwarded through the MBean server, and the original source of the notification was a reference to the emitting MBean object, then the MBean server replaces it by the MBean's ObjectName. If the listener has registered directly with the MBean, this is either the object name or a direct reference to the MBean.
It is strongly recommended that notification senders use the object name rather than a reference to the MBean object as the source.
The serialVersionUID of this class is -7516092053498031989L
.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
source | This field hides the |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a Notification object.
| |||||||||||
Creates a Notification object.
| |||||||||||
Creates a Notification object.
| |||||||||||
Creates a Notification object.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Get the notification message.
| |||||||||||
Get the notification sequence number.
| |||||||||||
Get the notification timestamp.
| |||||||||||
Get the notification type.
| |||||||||||
Get the user data.
| |||||||||||
Set the notification sequence number.
| |||||||||||
Sets the source.
| |||||||||||
Set the notification timestamp.
| |||||||||||
Set the user data.
| |||||||||||
Returns a String representation of this notification.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
This field hides the source
field in the
parent class to make it non-transient and therefore part of the
serialized form.
Creates a Notification object. The notification timeStamp is set to the current date.
type | The notification type. |
---|---|
source | The notification source. |
sequenceNumber | The notification sequence number within the source object. |
Creates a Notification object. The notification timeStamp is set to the current date.
type | The notification type. |
---|---|
source | The notification source. |
sequenceNumber | The notification sequence number within the source object. |
message | The detailed message. |
Creates a Notification object.
type | The notification type. |
---|---|
source | The notification source. |
sequenceNumber | The notification sequence number within the source object. |
timeStamp | The notification emission date. |
Creates a Notification object.
type | The notification type. |
---|---|
source | The notification source. |
sequenceNumber | The notification sequence number within the source object. |
timeStamp | The notification emission date. |
message | The detailed message. |
Get the notification message.
Get the notification sequence number.
Get the notification type.
Get the user data.
Set the notification sequence number.
sequenceNumber | The notification sequence number within the source object. It is a serial number identifying a particular instance of notification in the context of the notification source. |
---|
Set the notification timestamp.
timeStamp | The notification timestamp. It indicates when the notification was generated. |
---|
Set the user data.
userData | The user data object. It is used for whatever data the notification source wishes to communicate to its consumers. |
---|
Returns a String representation of this notification.