|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.util.EventObject | +--javax.management.Notification | +--jain.protocol.ss7.oam.OamAlarmNotification | +--jain.protocol.ss7.oam.tcap.TcapAlarmNotification
A TcapAlarmNotification is a Notification emitted by a Tcap Managed Bean (MBean) to indicate a change in status of the MBean. This state change may result from :
This TcapAlarmNotification should be sent to all applications that have registered with the TCAP MBean as a javax.management.NotificationListener using a filter 'f', where f.isNotificationEnabled(this.getType()) == true.
The Notification class extends the java.util.EventObject base class and defines the minimal information contained in a notification. It contains the following fields:
the notification type, which is a string expressed in a dot notation similar to Java properties.
a sequence number, which is a serial number identifying a particular instance of notification in the context of the notification source
a time stamp, indicating when the notification was generated
a message contained in a string, which could be the explanation of the notification for displaying to a user
userData is used for whatever other data the notification source wishes to communicate to its consumers
Notification sources should use the notification type to indicate the nature of the event to their consumers. When additional information needs to be transmitted to consumers, the source may place it in the message or user data fields.
Inheritance hierarchy for JAIN OAM Notification
Field Summary | |
static int |
TCAP_ALARM_RESOURCE_LIMIT_REACHED
Alarm Type Constant: No resources remaining. |
Fields inherited from class jain.protocol.ss7.oam.OamAlarmNotification |
ALARM_MO_ATTRIBUTE_VALUE_CHANGED,
ALARM_MO_CREATED,
ALARM_MO_DELETED,
ALARM_TIMER_EXPIRED,
PRIORITY_CRITICAL,
PRIORITY_HIGH,
PRIORITY_INFORMATIONAL,
PRIORITY_LOW,
PRIORITY_VENDOR_DEFINED |
Constructor Summary | |
TcapAlarmNotification(OamManagedObjectMBean source,
long sequenceNumber,
int priority,
int alarmType)
Constructs a new TcapAlarmNotification . |
Method Summary | |
java.lang.String |
toString()
Returns a string representation (with details) of classes which extend this class. |
Methods inherited from class jain.protocol.ss7.oam.OamAlarmNotification |
getAlarmType,
getPriority,
getTimerId,
getTimestamp,
setPriority,
setTimerId |
Methods inherited from class javax.management.Notification |
getMessage,
getSequenceNumber,
getSource,
getTimeStamp,
getType,
getUserData,
setSource,
setUserData |
Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
Field Detail |
public static final int TCAP_ALARM_RESOURCE_LIMIT_REACHED
Emitted By: TcapNodeMBean
Notification Type: "jain.protocol.ss7.oam.tcap.alarm.ssn_unavailable_maintenance".
Constructor Detail |
public TcapAlarmNotification(OamManagedObjectMBean source, long sequenceNumber, int priority, int alarmType) throws java.lang.IllegalArgumentException
TcapAlarmNotification
.source
- The Managed Bean that emitted this Notification.sequenceNumberThe
- notification sequence number within the source object.priority
- The priority of this TcapAlarmNotification.
This may be either (in increasing order of priority):
alarmType
- The type of this alarm. This may be any one of the
Alarm Type constants defined in this class, or one of those inherited from
OamAlarmNotification.Method Detail |
public java.lang.String toString()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |