Interface AlertEvent
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractAlertEvent
,DefaultAlertEvent
Deprecated.
An AlertEvent contains the current state of an alert.
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Returns the active timestamp of the alert ornull
if not acknowledged.Deprecated.Returns the active timestamp of the alert ornull
if not active.Deprecated.Returns the active value of the alert ornull
if not active.Deprecated.Returns the cleared timestamp of the alert ornull
if not cleared.Deprecated.Returns the cleared value of the alert ornull
if not cleared.Deprecated.Returns a user-entered path for the alert.getNotes()
Deprecated.Returns user-entered notes for the alert.getPath()
Deprecated.Returns the path of the source, such as the path to a SQLTag, which should be reasonably unique.Deprecated.Returns the name of the alert state that was triggeredDeprecated.Returns the severity of the alert stateDeprecated.Returns the name of the SCADARail system responsible for the alertgetUser()
Deprecated.Returns a username associated with the message ornull
if not set.boolean
isAcked()
Deprecated.boolean
isActive()
Deprecated.boolean
isClear()
Deprecated.
-
Method Details
-
getSystem
String getSystem()Deprecated.Returns the name of the SCADARail system responsible for the alert -
getPath
String getPath()Deprecated.Returns the path of the source, such as the path to a SQLTag, which should be reasonably unique. That is, there should not be another alert with the same path in the same SCADARail system. This path lets alert handlers correlate ACKS and CLEARS with their initial ALERTs -
getDisplayPath
String getDisplayPath()Deprecated.Returns a user-entered path for the alert. -
getNotes
String getNotes()Deprecated.Returns user-entered notes for the alert. -
getStateName
String getStateName()Deprecated.Returns the name of the alert state that was triggered -
getStateSeverity
AlertSeverity getStateSeverity()Deprecated.Returns the severity of the alert state -
getActiveTimestamp
Deprecated.Returns the active timestamp of the alert ornull
if not active. -
getActiveValue
Deprecated.Returns the active value of the alert ornull
if not active. -
getClearedTimestamp
Deprecated.Returns the cleared timestamp of the alert ornull
if not cleared. -
getClearedValue
Deprecated.Returns the cleared value of the alert ornull
if not cleared. -
getAcknowledgedTimestamp
Deprecated.Returns the active timestamp of the alert ornull
if not acknowledged. -
getUser
Deprecated.Returns a username associated with the message ornull
if not set. Mostly used for Acknowledgements. -
isActive
boolean isActive()Deprecated. -
isClear
boolean isClear()Deprecated. -
isAcked
boolean isAcked()Deprecated.
-