Interface AlertEvent
- 
- All Superinterfaces:
- java.io.Serializable
 - All Known Implementing Classes:
- AbstractAlertEvent,- DefaultAlertEvent
 
 @Deprecated public interface AlertEvent extends java.io.SerializableDeprecated.An AlertEvent contains the current state of an alert.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.DategetAcknowledgedTimestamp()Deprecated.Returns the active timestamp of the alert ornullif not acknowledged.java.util.DategetActiveTimestamp()Deprecated.Returns the active timestamp of the alert ornullif not active.java.lang.DoublegetActiveValue()Deprecated.Returns the active value of the alert ornullif not active.java.util.DategetClearedTimestamp()Deprecated.Returns the cleared timestamp of the alert ornullif not cleared.java.lang.DoublegetClearedValue()Deprecated.Returns the cleared value of the alert ornullif not cleared.java.lang.StringgetDisplayPath()Deprecated.Returns a user-entered path for the alert.java.lang.StringgetNotes()Deprecated.Returns user-entered notes for the alert.java.lang.StringgetPath()Deprecated.Returns the path of the source, such as the path to a SQLTag, which should be reasonably unique.java.lang.StringgetStateName()Deprecated.Returns the name of the alert state that was triggeredAlertSeveritygetStateSeverity()Deprecated.Returns the severity of the alert statejava.lang.StringgetSystem()Deprecated.Returns the name of the SCADARail system responsible for the alertjava.lang.StringgetUser()Deprecated.Returns a username associated with the message ornullif not set.booleanisAcked()Deprecated.booleanisActive()Deprecated.booleanisClear()Deprecated.
 
- 
- 
- 
Method Detail- 
getSystemjava.lang.String getSystem() Deprecated.Returns the name of the SCADARail system responsible for the alert
 - 
getPathjava.lang.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
 - 
getDisplayPathjava.lang.String getDisplayPath() Deprecated.Returns a user-entered path for the alert.
 - 
getNotesjava.lang.String getNotes() Deprecated.Returns user-entered notes for the alert.
 - 
getStateNamejava.lang.String getStateName() Deprecated.Returns the name of the alert state that was triggered
 - 
getStateSeverityAlertSeverity getStateSeverity() Deprecated.Returns the severity of the alert state
 - 
getActiveTimestamp@Nullable java.util.Date getActiveTimestamp() Deprecated.Returns the active timestamp of the alert ornullif not active.
 - 
getActiveValue@Nullable java.lang.Double getActiveValue() Deprecated.Returns the active value of the alert ornullif not active.
 - 
getClearedTimestamp@Nullable java.util.Date getClearedTimestamp() Deprecated.Returns the cleared timestamp of the alert ornullif not cleared.
 - 
getClearedValue@Nullable java.lang.Double getClearedValue() Deprecated.Returns the cleared value of the alert ornullif not cleared.
 - 
getAcknowledgedTimestamp@Nullable java.util.Date getAcknowledgedTimestamp() Deprecated.Returns the active timestamp of the alert ornullif not acknowledged.
 - 
getUser@Nullable java.lang.String getUser() Deprecated.Returns a username associated with the message ornullif not set. Mostly used for Acknowledgements.
 - 
isActiveboolean isActive() Deprecated.
 - 
isClearboolean isClear() Deprecated.
 - 
isAckedboolean isAcked() Deprecated.
 
- 
 
-