Interface AlarmState
-
- All Known Implementing Classes:
AlarmDocumentDTO
public interface AlarmState
Used to represent the state of an alarm at some particular point in time. (This is a minimal interface exposed via the API. The underlying storage may contain more fields which can be added here as necessary.)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Long
getAckTime()
String
getAckUser()
Integer
getCounter()
Long
getDeletedTime()
Integer
getId()
String
getReductionKey()
List<? extends RelatedAlarmState>
getRelatedAlarms()
Integer
getSeverityId()
String
getSeverityLabel()
Integer
getType()
boolean
isSituation()
-
-
-
Method Detail
-
getId
Integer getId()
-
getReductionKey
String getReductionKey()
-
getDeletedTime
Long getDeletedTime()
-
getType
Integer getType()
-
getSeverityId
Integer getSeverityId()
-
getSeverityLabel
String getSeverityLabel()
-
getAckTime
Long getAckTime()
-
getAckUser
String getAckUser()
-
isSituation
boolean isSituation()
-
getCounter
Integer getCounter()
-
getRelatedAlarms
List<? extends RelatedAlarmState> getRelatedAlarms()
-
-