public interface AlarmModel
The AlarmModel is basically the state machine of the AlarmPoint system,
and it is possible to define different AlarmModels
for each and every alarm. Alarms that are assigned the default
AlarmModel of the AlarmSystem can be
re-assigned another AlarmModel in runtime, just by
changing the default AlarmModel in the
AlarmSystem. Alarms can also change the
AlarmModel by calling the setAlarmModel
in each alarm individually.
AlarmSystem| Modifier and Type | Field and Description |
|---|---|
static String |
MODEL_BUNDLE_NAME |
| Modifier and Type | Method and Description |
|---|---|
List<String> |
alarmTriggers()
Returns an array of alarm triggers valid for this AlarmModel.
|
boolean |
computeCondition(AlarmStatus status) |
String |
computeTrigger(AlarmStatus status,
boolean condition) |
AlarmEvent |
evaluate(AlarmPoint alarm,
String trigger)
Execute the required changes upon an AlarmTrigger.
|
String |
modelDescription()
Returns a Description of the AlarmModel in the default Locale.
|
String |
modelDescription(Locale locale)
Returns a Description of the AlarmModel.
|
String |
modelName()
Returns the Name of the AlarmModel.
|
List<String> |
statusList() |
static final String MODEL_BUNDLE_NAME
AlarmEvent evaluate(AlarmPoint alarm, String trigger) throws IllegalArgumentException
alarm - The AlarmPoint the trigger is for.trigger - the AlarmTrigger that was used.IllegalArgumentException - If the trigger given is not supported by this alarm model.List<String> alarmTriggers()
String computeTrigger(AlarmStatus status, boolean condition)
boolean computeCondition(AlarmStatus status)
String modelName()
String modelDescription()
String modelDescription(@Optional Locale locale)
null, then the
default Locale is used.locale - The locale that should be used for the description, or null for the default locale.