public static class IltAlarm.State extends IltAlarmSystem.State
In this context:
For each known alarm severity, this model provides a counter of new alarms and a counter of acknowledged alarms.
It also stores two boolean statuses that modify the way the
afore-mentionned counters are to be interpreted:
lossOfConnectivity
indicates that the connection
with the telecom equipment has been interrupted. As a result, a
number of alarms are in an unreliable state. notReporting
indicates that the equipment is no longer
sending out alarms or alarms are being ignored. As a result, a
display not showing any alarms must not be taken into account. The alarm counters can be automatically computed from the list of
IltAlarm
s associated to the managed object, or directly
updated by the back-end. For a given managed object, these modes are
exclusive. The mode is controlled by the computedFromAlarmList
property.
When the counters are automatically computed from the list of alarms:
IltAlarm
objects. IllegalStateException
s are triggered.Modifier and Type | Field and Description |
---|---|
protected boolean |
computedFromAlarmList |
protected boolean |
counterModificationAllowed |
protected static IlpFilter |
ImpactSeverityFilter |
static IltStateInfo |
metainfo
Contains metainformation about this
IltState class. |
protected static IlpFilter |
RawSeverityFilter |
_alarmValues, _notifier
Constructor and Description |
---|
State()
Creates an
IltAlarm.State with severity counters to zero
and lossOfConnectivity and notReporting to
false . |
State(ilog.tgo.model.internal.IltAggregateStateValue value)
Creates an alarm state based on a given state value.
|
State(int newCriticalAlarmCount,
int newMajorAlarmCount,
int newMinorAlarmCount,
int newWarningAlarmCount,
int acknowledgedCriticalAlarmCount,
int acknowledgedMajorAlarmCount,
int acknowledgedMinorAlarmCount,
int acknowledgedWarningAlarmCount,
boolean lossOfConnectivity,
boolean notReporting)
Deprecated.
This constructor is obsolete, please use another constructor.
|
State(int newCriticalAlarmCount,
int newMajorAlarmCount,
int newMinorAlarmCount,
int newWarningAlarmCount,
int newUnknownAlarmCount,
int newClearedAlarmCount,
int acknowledgedCriticalAlarmCount,
int acknowledgedMajorAlarmCount,
int acknowledgedMinorAlarmCount,
int acknowledgedWarningAlarmCount,
int acknowledgedUnknownAlarmCount,
int acknowledgedClearedAlarmCount,
boolean lossOfConnectivity,
boolean notReporting)
Creates an
IltAlarm.State with the given counts of
new alarms and acknowledged alarms for each severity, as well as for
the lossOfCconnectivity and notReporting
statuses. |
State(int newCriticalAlarmCount,
int newMajorAlarmCount,
int newMinorAlarmCount,
int newWarningAlarmCount,
int newUnknownAlarmCount,
int newClearedAlarmCount,
int acknowledgedCriticalAlarmCount,
int acknowledgedMajorAlarmCount,
int acknowledgedMinorAlarmCount,
int acknowledgedWarningAlarmCount,
int acknowledgedUnknownAlarmCount,
int acknowledgedClearedAlarmCount,
int newCriticalHighImpactAlarmCount,
int newCriticalLowImpactAlarmCount,
int newMajorHighImpactAlarmCount,
int newMajorLowImpactAlarmCount,
int newMinorHighImpactAlarmCount,
int newMinorLowImpactAlarmCount,
int newWarningHighImpactAlarmCount,
int newWarningLowImpactAlarmCount,
int newUnknownImpactAlarmCount,
int newClearedImpactAlarmCount,
int acknowledgedCriticalHighImpactAlarmCount,
int acknowledgedCriticalLowImpactAlarmCount,
int acknowledgedMajorHighImpactAlarmCount,
int acknowledgedMajorLowImpactAlarmCount,
int acknowledgedMinorHighImpactAlarmCount,
int acknowledgedMinorLowImpactAlarmCount,
int acknowledgedWarningHighImpactAlarmCount,
int acknowledgedWarningLowImpactAlarmCount,
int acknowledgedUnknownImpactAlarmCount,
int acknowledgedClearedImpactAlarmCount,
boolean lossOfConnectivity,
boolean notReporting)
Creates an
IltAlarm.State with the given counts of
new alarms and acknowledged alarms for each severity, as well as for
the lossOfConnectivity and notReporting
statuses. |
Modifier and Type | Method and Description |
---|---|
void |
acknowledgeAlarm(IltAlarmSeverity severity)
Acknowledges an alarm of a given severity.
|
void |
acknowledgeAllAlarms()
Acknowledges all alarms, including raw and impact alarms.
|
void |
acknowledgeAllAlarms(IltAlarmSeverity severity)
Acknowledges all alarms of a given severity.
|
void |
acknowledgeAllImpactAlarms()
Acknowledges all impact alarms.
|
void |
acknowledgeAllRawAlarms()
Acknowledges all raw alarms.
|
void |
addAcknowledgedAlarm(IltAlarmSeverity severity)
Adds an acknowledged alarm of a given severity.
|
void |
addNewAlarm(IltAlarmSeverity severity)
Adds a new alarm of a given severity.
|
void |
alarmAdded(IltAlarm alarm)
An alarm was added to the list of alarms of the managed object.
|
void |
alarmChanged(IltAlarm alarm,
IlpAttribute attribute,
Object oldValue)
An alarm from the list of alarms of the managed object was changed.
|
void |
alarmRemoved(IltAlarm alarm)
An alarm was removed from the list of alarms of the managed object.
|
protected void |
checkComputationState()
Checks whether alarm counter modifications are legal or not.
|
Object |
clone()
Creates a copy of this object.
|
boolean |
equals(Object obj)
Compares this object with another object.
|
int |
getAcknowledgedAlarmCount()
Returns the number of acknowledged alarms, that are either raw or impact
alarms, irrespective of their severity.
|
int |
getAcknowledgedImpactAlarmCount()
Returns the number of acknowledged impact alarms, irrespective of their
severity.
|
int |
getAcknowledgedRawAlarmCount()
Returns the number of acknowledged raw alarms, irrespective of their
severity.
|
int |
getAlarmCount()
Returns the count of all alarms, acknowledged or not, that are either raw
or impact alarms, irrespective of their severity.
|
IltAlarmSystem |
getAlarmSystem()
System for which the values are being handled by this state.
|
IltAlarmSeverity |
getHighestAcknowledgedAlarmSeverity()
Returns the highest severity for which the number of acknowledged
alarms is nonzero, including raw and impact alarms.
|
IltAlarmSeverity |
getHighestAcknowledgedAlarmSeverity(IltAlarmSeverity below)
Returns the highest severity less than
below for
which the number of acknowledged alarms is nonzero, including raw and
impact alarms. |
IltAlarm.ImpactSeverity |
getHighestAcknowledgedImpactAlarmSeverity()
Returns the highest severity of impact alarm for which the number of
acknowledged alarms is nonzero.
|
IltAlarm.ImpactSeverity |
getHighestAcknowledgedImpactAlarmSeverity(IltAlarm.ImpactSeverity below)
Returns the highest severity of impact alarm, less than
below , and for which the number of acknowledged alarms is
nonzero. |
IltAlarm.Severity |
getHighestAcknowledgedRawAlarmSeverity()
Returns the highest severity of raw alarms for which the number of
acknowledged alarms is nonzero.
|
IltAlarm.Severity |
getHighestAcknowledgedRawAlarmSeverity(IltAlarm.Severity below)
Returns the highest severity of raw alarm, less than
below ,
and for which the number of acknowledged alarms is nonzero. |
IltAlarmSeverity |
getHighestAlarmSeverity()
Returns the highest severity for which the number of alarms,
acknowledged or otherwise, is nonzero, including raw and impact alarms.
|
IltAlarmSeverity |
getHighestAlarmSeverity(IltAlarmSeverity below)
Returns the highest severity less than
below for
which the number of alarms, acknowledged or otherwise, is nonzero,
including raw and impact alarms. |
IltAlarm.ImpactSeverity |
getHighestImpactAlarmSeverity()
Returns the highest severity for which the number of impact alarms,
acknowledged or otherwise, is nonzero.
|
IltAlarm.ImpactSeverity |
getHighestImpactAlarmSeverity(IltAlarm.ImpactSeverity below)
Returns the highest severity less than
below for
which the number of impact alarms, acknowledged or otherwise, is nonzero. |
IltAlarmSeverity |
getHighestNewAlarmSeverity()
Returns the highest severity for which the number of new alarms is
nonzero, including raw and impact alarms.
|
IltAlarmSeverity |
getHighestNewAlarmSeverity(IltAlarmSeverity below)
Returns the highest severity less than
below for which the
number of new alarms is nonzero, including raw and impact alarms. |
IltAlarm.ImpactSeverity |
getHighestNewImpactAlarmSeverity()
Returns the highest severity for which the number of new impact alarms is
nonzero.
|
IltAlarm.ImpactSeverity |
getHighestNewImpactAlarmSeverity(IltAlarm.ImpactSeverity below)
Returns the highest severity less than
below for which the
number of new impact alarms is nonzero. |
IltAlarm.Severity |
getHighestNewRawAlarmSeverity()
Returns the highest severity for which the number of new raw alarms is
nonzero.
|
IltAlarm.Severity |
getHighestNewRawAlarmSeverity(IltAlarm.Severity below)
Returns the highest severity less than
below for which the
number of new raw alarms is nonzero. |
IltAlarm.Severity |
getHighestRawAlarmSeverity()
Returns the highest severity for which the number of raw alarms,
acknowledged or otherwise, is nonzero.
|
IltAlarm.Severity |
getHighestRawAlarmSeverity(IltAlarm.Severity below)
Returns the highest severity less than
below for
which the number of raw alarms, acknowledged or otherwise, is nonzero. |
int |
getImpactAlarmCount()
Returns the count of impact alarms, acknowledged or not, irrespective of
their severity.
|
boolean |
getLossOfConnectivity()
Returns the
lossOfConnectivity status. |
int |
getNewAlarmCount()
Returns the number of new alarms, that are either raw or impact
alarms, irrespective of their severity.
|
int |
getNewImpactAlarmCount()
Returns the number of new impact alarms, irrespective of their severity.
|
int |
getNewRawAlarmCount()
Returns the number of new raw alarms, irrespective of their severity.
|
boolean |
getNotReporting()
Returns the
notReporting status. |
int |
getRawAlarmCount()
Returns the count of raw alarms, acknowledged or not, irrespective of
their severity.
|
boolean |
isComputedFromAlarmList()
Returns the activation status of the automatic computation of alarm
counters from the list of alarms.
|
protected boolean |
isCounterModificationAllowed() |
void |
removeAcknowledgedAlarm(IltAlarmSeverity severity)
Removes an acknowledged alarm of a given severity.
|
void |
removeAllAcknowledgedAlarms()
Removes all acknowledged alarms, that are either raw or impact
alarms, irrespective of their severity.
|
void |
removeAllAcknowledgedAlarms(IltAlarmSeverity severity)
Removes all acknowledged alarms of a given severity.
|
void |
removeAllAcknowledgedImpactAlarms()
Removes all acknowledged impact alarms, irrespective of their severity.
|
void |
removeAllAcknowledgedRawAlarms()
Removes all acknowledged raw alarms, irrespective of their severity.
|
void |
removeAllAlarms()
Removes all alarms, that are either raw or impact alarms, irrespective of
their severity.
|
void |
removeAllImpactAlarms()
Removes all impact alarms, irrespective of their severity.
|
void |
removeAllNewAlarms()
Removes all new alarms, including raw and impact alarms.
|
void |
removeAllNewAlarms(IltAlarmSeverity severity)
Removes all new alarms of a given severity.
|
void |
removeAllNewImpactAlarms()
Removes all new impact alarms.
|
void |
removeAllNewRawAlarms()
Removes all new raw alarms.
|
void |
removeAllRawAlarms()
Removes all raw alarms, irrespective of their severity.
|
void |
removeNewAlarm(IltAlarmSeverity severity)
Removes a new alarm of a given severity.
|
void |
reset()
Resets the alarms counters to zero and the statuses to
false . |
void |
setAcknowledgedAlarmCount(IltAlarmSeverity severity,
int value)
Sets the number of acknowledged alarms of a given severity.
|
void |
setComputedFromAlarmList(boolean value)
Enables or disables the automatic computation of alarm counters from
the list of alarms.
|
protected void |
setCounterModificationAllowed(boolean value) |
void |
setLossOfConnectivity(boolean value)
Sets the
lossOfConnectivity status. |
void |
setNewAlarmCount(IltAlarmSeverity severity,
int value)
Sets the number of new alarms of a given severity.
|
void |
setNotReporting(boolean value)
Sets the
notReporting status. |
acknowledgeAllAlarms, getAcknowledgedAlarmCount, getAlarmCount, getCount, getNewAlarmCount, getNotifier, getValue, hasNotifier, internalGetHighestAcknowledgedAlarmSeverity, internalGetHighestAcknowledgedAlarmSeverity, internalGetHighestAcknowledgedAlarmSeverity, internalGetHighestAcknowledgedAlarmSeverity, internalGetHighestAlarmSeverity, internalGetHighestAlarmSeverity, internalGetHighestAlarmSeverity, internalGetHighestAlarmSeverity, internalGetHighestNewAlarmSeverity, internalGetHighestNewAlarmSeverity, internalGetHighestNewAlarmSeverity, internalGetHighestNewAlarmSeverity, removeAllAcknowledgedAlarms, removeAllAlarms, removeAllNewAlarms, setNotifier
copy, CreateNameFilter, CreateStateFilter, createValue, getAliases, getAllPaths, getAltName, getDefault, getDescription, getName, getProperty, getStateInfo, getToolTipText, getToolTipText, hasDefault, hasDescription, hashCode, intern, isInside, IsPropertyTransient, isValid, list, removeProperty, setAltName, setDescription, setMessage, setName, setProperty, SetPropertyTransient, toString
protected static final IlpFilter RawSeverityFilter
protected static final IlpFilter ImpactSeverityFilter
public static IltStateInfo metainfo
IltState
class.protected boolean computedFromAlarmList
protected boolean counterModificationAllowed
@Deprecated public State(int newCriticalAlarmCount, int newMajorAlarmCount, int newMinorAlarmCount, int newWarningAlarmCount, int acknowledgedCriticalAlarmCount, int acknowledgedMajorAlarmCount, int acknowledgedMinorAlarmCount, int acknowledgedWarningAlarmCount, boolean lossOfConnectivity, boolean notReporting)
IltAlarm.State
with the given counts of
new alarms and acknowledged alarms for each severity, as well as for
the lossOfConnectivity
and notReporting
statuses.public State(int newCriticalAlarmCount, int newMajorAlarmCount, int newMinorAlarmCount, int newWarningAlarmCount, int newUnknownAlarmCount, int newClearedAlarmCount, int acknowledgedCriticalAlarmCount, int acknowledgedMajorAlarmCount, int acknowledgedMinorAlarmCount, int acknowledgedWarningAlarmCount, int acknowledgedUnknownAlarmCount, int acknowledgedClearedAlarmCount, boolean lossOfConnectivity, boolean notReporting)
IltAlarm.State
with the given counts of
new alarms and acknowledged alarms for each severity, as well as for
the lossOfCconnectivity
and notReporting
statuses.
Counters of impact alarms are set to zero.
public State(int newCriticalAlarmCount, int newMajorAlarmCount, int newMinorAlarmCount, int newWarningAlarmCount, int newUnknownAlarmCount, int newClearedAlarmCount, int acknowledgedCriticalAlarmCount, int acknowledgedMajorAlarmCount, int acknowledgedMinorAlarmCount, int acknowledgedWarningAlarmCount, int acknowledgedUnknownAlarmCount, int acknowledgedClearedAlarmCount, int newCriticalHighImpactAlarmCount, int newCriticalLowImpactAlarmCount, int newMajorHighImpactAlarmCount, int newMajorLowImpactAlarmCount, int newMinorHighImpactAlarmCount, int newMinorLowImpactAlarmCount, int newWarningHighImpactAlarmCount, int newWarningLowImpactAlarmCount, int newUnknownImpactAlarmCount, int newClearedImpactAlarmCount, int acknowledgedCriticalHighImpactAlarmCount, int acknowledgedCriticalLowImpactAlarmCount, int acknowledgedMajorHighImpactAlarmCount, int acknowledgedMajorLowImpactAlarmCount, int acknowledgedMinorHighImpactAlarmCount, int acknowledgedMinorLowImpactAlarmCount, int acknowledgedWarningHighImpactAlarmCount, int acknowledgedWarningLowImpactAlarmCount, int acknowledgedUnknownImpactAlarmCount, int acknowledgedClearedImpactAlarmCount, boolean lossOfConnectivity, boolean notReporting)
IltAlarm.State
with the given counts of
new alarms and acknowledged alarms for each severity, as well as for
the lossOfConnectivity
and notReporting
statuses.
This constructor allows you to specify counters for raw and impact alarms.
public State()
IltAlarm.State
with severity counters to zero
and lossOfConnectivity
and notReporting
to
false
.public State(ilog.tgo.model.internal.IltAggregateStateValue value)
public IltAlarmSystem getAlarmSystem()
getAlarmSystem
in class IltAlarmSystem.State
public boolean getLossOfConnectivity()
lossOfConnectivity
status.public void setLossOfConnectivity(boolean value)
lossOfConnectivity
status.public boolean getNotReporting()
notReporting
status.public void setNotReporting(boolean value)
notReporting
status.public void setComputedFromAlarmList(boolean value)
Effective changes to the value of this property reset the alarm counters to zero.
value
- true
to enable the automatic computation of
the counters from the list of alarms; false
to
disable it.public boolean isComputedFromAlarmList()
true
if the alarm counters are automatically
computed from the list of alarms; false
otherwise.protected void setCounterModificationAllowed(boolean value)
protected boolean isCounterModificationAllowed()
protected void checkComputationState()
IllegalStateException
- when a direct counter
modification API is used while the alarm counters are
automatically being computed from the list of alarms.public void alarmAdded(IltAlarm alarm)
alarm
- The alarm that was added cannot be null
.IltDefaultDataSource.setHandlingAlarmReferences(boolean)
public void alarmRemoved(IltAlarm alarm)
alarm
- The alarm that was removed cannot be null
.IltDefaultDataSource.setHandlingAlarmReferences(boolean)
public void alarmChanged(IltAlarm alarm, IlpAttribute attribute, Object oldValue)
alarm
- The alarm that has been changed.attribute
- The attribute that has been changed.oldValue
- The old value of the changed attribute.IltDefaultDataSource.setHandlingAlarmReferences(boolean)
public Object clone()
clone
in class IltAlarmSystem.State
public boolean equals(Object obj)
IltAlarm.State
instances are considered equal if
their corresponding counters and other statuses are equal.equals
in class IltAlarmSystem.State
public void reset()
false
.reset
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public int getAcknowledgedAlarmCount()
getAcknowledgedAlarmCount
in class IltAlarmSystem.State
getAcknowledgedRawAlarmCount()
,
getAcknowledgedImpactAlarmCount()
public int getAcknowledgedRawAlarmCount()
public int getAcknowledgedImpactAlarmCount()
public int getNewAlarmCount()
getNewAlarmCount
in class IltAlarmSystem.State
getNewRawAlarmCount()
,
getNewImpactAlarmCount()
public int getNewRawAlarmCount()
public int getNewImpactAlarmCount()
public int getAlarmCount()
getAlarmCount
in class IltAlarmSystem.State
getRawAlarmCount()
,
getImpactAlarmCount()
public int getRawAlarmCount()
public int getImpactAlarmCount()
public void addAcknowledgedAlarm(IltAlarmSeverity severity)
addAcknowledgedAlarm
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void addNewAlarm(IltAlarmSeverity severity)
addNewAlarm
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeNewAlarm(IltAlarmSeverity severity)
removeNewAlarm
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeAllNewAlarms(IltAlarmSeverity severity)
removeAllNewAlarms
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeAcknowledgedAlarm(IltAlarmSeverity severity)
removeAcknowledgedAlarm
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeAllAcknowledgedAlarms(IltAlarmSeverity severity)
removeAllAcknowledgedAlarms
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void acknowledgeAlarm(IltAlarmSeverity severity)
acknowledgeAlarm
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void acknowledgeAllAlarms(IltAlarmSeverity severity)
acknowledgeAllAlarms
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeAllNewAlarms()
removeAllNewAlarms
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.removeAllNewRawAlarms()
,
removeAllNewImpactAlarms()
public void removeAllNewRawAlarms()
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeAllNewImpactAlarms()
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeAllAcknowledgedAlarms()
removeAllAcknowledgedAlarms
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.removeAllAcknowledgedRawAlarms()
,
removeAllAcknowledgedImpactAlarms()
public void removeAllAcknowledgedRawAlarms()
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeAllAcknowledgedImpactAlarms()
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeAllAlarms()
removeAllAlarms
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.removeAllRawAlarms()
,
removeAllImpactAlarms()
public void removeAllRawAlarms()
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void removeAllImpactAlarms()
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void acknowledgeAllAlarms()
acknowledgeAllAlarms
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.acknowledgeAllRawAlarms()
,
acknowledgeAllImpactAlarms()
public void acknowledgeAllRawAlarms()
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void acknowledgeAllImpactAlarms()
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void setAcknowledgedAlarmCount(IltAlarmSeverity severity, int value)
setAcknowledgedAlarmCount
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public void setNewAlarmCount(IltAlarmSeverity severity, int value)
setNewAlarmCount
in class IltAlarmSystem.State
IllegalStateException
- when the alarm counters are automatically
computed from the list of alarms. In this case the associated
IltAlarm
s should be updated.public IltAlarmSeverity getHighestNewAlarmSeverity()
public IltAlarm.Severity getHighestNewRawAlarmSeverity()
public IltAlarm.ImpactSeverity getHighestNewImpactAlarmSeverity()
public IltAlarm.Severity getHighestNewRawAlarmSeverity(IltAlarm.Severity below)
below
for which the
number of new raw alarms is nonzero.public IltAlarm.ImpactSeverity getHighestNewImpactAlarmSeverity(IltAlarm.ImpactSeverity below)
below
for which the
number of new impact alarms is nonzero.public IltAlarmSeverity getHighestNewAlarmSeverity(IltAlarmSeverity below)
below
for which the
number of new alarms is nonzero, including raw and impact alarms.public IltAlarmSeverity getHighestAcknowledgedAlarmSeverity()
public IltAlarm.Severity getHighestAcknowledgedRawAlarmSeverity()
public IltAlarm.ImpactSeverity getHighestAcknowledgedImpactAlarmSeverity()
public IltAlarmSeverity getHighestAcknowledgedAlarmSeverity(IltAlarmSeverity below)
below
for
which the number of acknowledged alarms is nonzero, including raw and
impact alarms.public IltAlarm.Severity getHighestAcknowledgedRawAlarmSeverity(IltAlarm.Severity below)
below
,
and for which the number of acknowledged alarms is nonzero.public IltAlarm.ImpactSeverity getHighestAcknowledgedImpactAlarmSeverity(IltAlarm.ImpactSeverity below)
below
, and for which the number of acknowledged alarms is
nonzero.public IltAlarmSeverity getHighestAlarmSeverity()
public IltAlarm.Severity getHighestRawAlarmSeverity()
public IltAlarm.ImpactSeverity getHighestImpactAlarmSeverity()
public IltAlarmSeverity getHighestAlarmSeverity(IltAlarmSeverity below)
below
for
which the number of alarms, acknowledged or otherwise, is nonzero,
including raw and impact alarms.public IltAlarm.Severity getHighestRawAlarmSeverity(IltAlarm.Severity below)
below
for
which the number of raw alarms, acknowledged or otherwise, is nonzero.public IltAlarm.ImpactSeverity getHighestImpactAlarmSeverity(IltAlarm.ImpactSeverity below)
below
for
which the number of impact alarms, acknowledged or otherwise, is nonzero.© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.