public interface AlarmSystemInterface
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Close and deallocate resources.
|
java.lang.String |
getSourceName()
Get the source name.
|
void |
push(java.util.Collection states)
Push a collection of fault states.
|
void |
push(FaultState state)
Push a fault state.
|
void |
pushActiveList(java.util.Collection active)
Push the set of active fault states.
|
void |
setSourceName(java.lang.String newSourceName)
Set the source name.
|
void setSourceName(java.lang.String newSourceName)
newSourceName - the source name.java.lang.String getSourceName()
void close()
void push(FaultState state) throws ASIException
state - the fault state change to push.ASIException - if the fault state can not be pushed.void push(java.util.Collection states) throws ASIException
states - ASIException - if the fault state collection can not be pushed.void pushActiveList(java.util.Collection active)
throws ASIException
active - the active fault states.ASIException - if the fault state active list can not be pushed.