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 TypeMethodDescription@Nullable DateDeprecated.Returns the active timestamp of the alert ornullif not acknowledged.@Nullable DateDeprecated.Returns the active timestamp of the alert ornullif not active.@Nullable DoubleDeprecated.Returns the active value of the alert ornullif not active.@Nullable DateDeprecated.Returns the cleared timestamp of the alert ornullif not cleared.@Nullable DoubleDeprecated.Returns the cleared value of the alert ornullif 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 alert@Nullable StringgetUser()Deprecated.Returns a username associated with the message ornullif not set.booleanisAcked()Deprecated.booleanisActive()Deprecated.booleanisClear()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
@Nullable Date getActiveTimestamp()Deprecated.Returns the active timestamp of the alert ornullif not active. -
getActiveValue
@Nullable Double getActiveValue()Deprecated.Returns the active value of the alert ornullif not active. -
getClearedTimestamp
@Nullable Date getClearedTimestamp()Deprecated.Returns the cleared timestamp of the alert ornullif not cleared. -
getClearedValue
@Nullable Double getClearedValue()Deprecated.Returns the cleared value of the alert ornullif not cleared. -
getAcknowledgedTimestamp
@Nullable Date getAcknowledgedTimestamp()Deprecated.Returns the active timestamp of the alert ornullif not acknowledged. -
getUser
@Nullable String getUser()Deprecated.Returns a username associated with the message ornullif not set. Mostly used for Acknowledgements. -
isActive
boolean isActive()Deprecated. -
isClear
boolean isClear()Deprecated. -
isAcked
boolean isAcked()Deprecated.
-