Class DefaultAlertMessage
java.lang.Object
com.inductiveautomation.ignition.gateway.alert.DefaultAlertMessage
- All Implemented Interfaces:
AlertMessage
,Serializable
A simple immutable implementation of AlertMessage
- See Also:
-
Field Summary
Fields inherited from interface com.inductiveautomation.ignition.common.alert.AlertMessage
ACKNOWLEDGED, ACTIVE, CLEARED, DEREGISTER, INFO_UPDATE, REGISTER, SUPPRESS_CLEAR_MSG
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultAlertMessage
(String system, String path, String stateName, AlertSeverity stateSeverity, Double value, Date timestamp, boolean register, boolean active, boolean cleared, boolean acknowledged, String user, String message, String displayPath, String notes, AlertNotificationMode notificationMode) DefaultAlertMessage
(Date timeStamp) -
Method Summary
Modifier and TypeMethodDescriptionint
Returns the alert flags to determine what type of alert it is.
REGISTER - 0x00000001 ACTIVE - 0x00000010 CLEARED - 0x00000100 ACKNOWLEDGED - 0x00001000 DEREGISTER - 0x00010000 SUPPRESS_CLEAR_MSG - 0x00010000Returns a user-configurable "friendly" path for the alert.Returns the alert's custom message, if any.Returns the alerts custom subject, if any.getNotes()
Get alert notes (extra information about the alert).Returns the notification mode for the tag- when it wants notifications to occur.getPath()
Returns the path of the source, such as the path to a SQLTag, which should be reasonably unique.Returns the name of the alert state that was triggeredReturns the severity of the alert stateReturns the name of the SCADARail system responsible for the alertReturns the originating timestamp for the message.getUser()
Returns a username associated with the message.getValue()
Returns the value that caused this alert.boolean
Returns whether or not the message is flagged as ACKNOWLEDGEDboolean
isActive()
Returns whether or not the message is flagged as ACTIVEboolean
Returns whether or not the message is flagged as CLEAREDboolean
Returns whether or not the message is flagged as DEREGISTERboolean
Returns whether or not the message is flagged as REGISTERboolean
isUpdate()
void
setAlertFlag
(int flag) Sets an alert flag to on status.void
setAlertFlag
(int flag, boolean value) Sets an alert flag to on or off status depending on value.void
setDisplayPath
(String displayPath) void
setMessage
(String message) void
setMessageSubject
(String value) void
void
setNotificationMode
(AlertNotificationMode notificationMode) void
void
setStateName
(String stateName) void
setStateSeverity
(AlertSeverity stateSeverity) void
void
setTimestamp
(Date timestamp) void
void
boolean
Returns whether or not the message is flagged as SUPPRESS_CLEAR_MSGtoString()
-
Constructor Details
-
DefaultAlertMessage
public DefaultAlertMessage() -
DefaultAlertMessage
-
DefaultAlertMessage
-
DefaultAlertMessage
public DefaultAlertMessage(String system, String path, String stateName, AlertSeverity stateSeverity, Double value, Date timestamp, boolean register, boolean active, boolean cleared, boolean acknowledged, String user, String message, String displayPath, String notes, AlertNotificationMode notificationMode)
-
-
Method Details
-
getAlertFlags
public int getAlertFlags()Description copied from interface:AlertMessage
Returns the alert flags to determine what type of alert it is.
- REGISTER - 0x00000001
- ACTIVE - 0x00000010
- CLEARED - 0x00000100
- ACKNOWLEDGED - 0x00001000
- DEREGISTER - 0x00010000
- SUPPRESS_CLEAR_MSG - 0x00010000
- Specified by:
getAlertFlags
in interfaceAlertMessage
-
setAlertFlag
public void setAlertFlag(int flag) Sets an alert flag to on status. -
setAlertFlag
public void setAlertFlag(int flag, boolean value) Sets an alert flag to on or off status depending on value. -
getMessageSubject
Description copied from interface:AlertMessage
Returns the alerts custom subject, if any.- Specified by:
getMessageSubject
in interfaceAlertMessage
-
setMessageSubject
-
getMessage
Description copied from interface:AlertMessage
Returns the alert's custom message, if any.- Specified by:
getMessage
in interfaceAlertMessage
-
setMessage
-
getNotes
Description copied from interface:AlertMessage
Get alert notes (extra information about the alert).- Specified by:
getNotes
in interfaceAlertMessage
-
setNotes
-
getPath
Description copied from interface:AlertMessage
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- Specified by:
getPath
in interfaceAlertMessage
-
setPath
-
getDisplayPath
Description copied from interface:AlertMessage
Returns a user-configurable "friendly" path for the alert. Configured on the tag level (so will likely be used often along with state name).- Specified by:
getDisplayPath
in interfaceAlertMessage
-
setDisplayPath
-
getStateName
Description copied from interface:AlertMessage
Returns the name of the alert state that was triggered- Specified by:
getStateName
in interfaceAlertMessage
-
setStateName
-
getStateSeverity
Description copied from interface:AlertMessage
Returns the severity of the alert state- Specified by:
getStateSeverity
in interfaceAlertMessage
-
setStateSeverity
-
getSystem
Description copied from interface:AlertMessage
Returns the name of the SCADARail system responsible for the alert- Specified by:
getSystem
in interfaceAlertMessage
-
setSystem
-
getTimestamp
Description copied from interface:AlertMessage
Returns the originating timestamp for the message.- Specified by:
getTimestamp
in interfaceAlertMessage
-
setTimestamp
-
getUser
Description copied from interface:AlertMessage
Returns a username associated with the message. Mostly used for Acknowledegments- Specified by:
getUser
in interfaceAlertMessage
-
setUser
-
getValue
Description copied from interface:AlertMessage
Returns the value that caused this alert. May not be applicable for all message types- Specified by:
getValue
in interfaceAlertMessage
-
setValue
-
getNotificationMode
Description copied from interface:AlertMessage
Returns the notification mode for the tag- when it wants notifications to occur.- Specified by:
getNotificationMode
in interfaceAlertMessage
-
setNotificationMode
-
isAcknowledged
public boolean isAcknowledged()Description copied from interface:AlertMessage
Returns whether or not the message is flagged as ACKNOWLEDGED- Specified by:
isAcknowledged
in interfaceAlertMessage
-
isActive
public boolean isActive()Description copied from interface:AlertMessage
Returns whether or not the message is flagged as ACTIVE- Specified by:
isActive
in interfaceAlertMessage
-
isCleared
public boolean isCleared()Description copied from interface:AlertMessage
Returns whether or not the message is flagged as CLEARED- Specified by:
isCleared
in interfaceAlertMessage
-
isRegister
public boolean isRegister()Description copied from interface:AlertMessage
Returns whether or not the message is flagged as REGISTER- Specified by:
isRegister
in interfaceAlertMessage
-
isDeregister
public boolean isDeregister()Description copied from interface:AlertMessage
Returns whether or not the message is flagged as DEREGISTER- Specified by:
isDeregister
in interfaceAlertMessage
-
suppressClearMessage
public boolean suppressClearMessage()Description copied from interface:AlertMessage
Returns whether or not the message is flagged as SUPPRESS_CLEAR_MSG- Specified by:
suppressClearMessage
in interfaceAlertMessage
-
isUpdate
public boolean isUpdate()- Specified by:
isUpdate
in interfaceAlertMessage
-
toString
-