Example usage for Java javax.management Notification fields, constructors, methods, implement or subclass
The text is from its open source code.
Notification(String type, Object source, long sequenceNumber) Creates a Notification object. | |
Notification(String type, Object source, long sequenceNumber, String message) Creates a Notification object. | |
Notification(String type, Object source, long sequenceNumber, long timeStamp) Creates a Notification object. | |
Notification(String type, Object source, long sequenceNumber, long timeStamp, String message) Creates a Notification object. |
Class> | getClass() Returns the runtime class of this Object . |
String | getMessage() Get the notification message. |
long | getSequenceNumber() Get the notification sequence number. |
Object | getSource() The object on which the Event initially occurred. |
long | getTimeStamp() Get the notification timestamp. |
String | getType() Get the notification type. |
Object | getUserData() Get the user data. |
void | setSource(Object source) Sets the source. |
void | setUserData(Object userData) Set the user data. |