Class AlarmEventInstance
- java.lang.Object
- 
- com.inductiveautomation.ignition.common.alarming.AlarmEventInstance
 
- 
- All Implemented Interfaces:
- AlarmEvent,- AlarmPipelineMonitor,- Countable,- Extendable<PropertySet>,- Mergable<PropertySet>,- MutablePropertyValueSource,- PropertySet,- PropertyValueSource,- java.io.Serializable,- java.lang.Iterable<PropertyValue>
 
 public class AlarmEventInstance extends java.lang.Object implements AlarmEvent, AlarmPipelineMonitor Alarm events normally exist as a single object in the system. However, in some cases (such as pipelines), we need to send the same event off in different directions, and we don't want to share the state between them. This class is used to create a new instance, which stores its own state, but still has a reference to the core event.- See Also:
- Serialized Form
 
- 
- 
Field Summary- 
Fields inherited from interface com.inductiveautomation.ignition.common.config.PropertySetEMPTY
 
- 
 - 
Constructor SummaryConstructors Constructor Description AlarmEventInstance(AlarmEvent core)AlarmEventInstance(AlarmEvent core, AlarmStateTransition transition)Convenience constructor for branching on new state transition *
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacknowledge(EventData ackData)voidactive(EventData activeData)static AlarmEventInstancebranch(AlarmEvent event)Creates a new instance, incrementing the BranchDepth property.voidclear(EventData clearData)booleancontains(Property<?> prop)<T> Tget(Property<T> prop)Retrieves the value of the property, or null if this set doesn't contain that property.EventDatagetAckData()EventDatagetActiveData()EventDatagetClearedData()intgetCount()StringPathgetDisplayPath()java.lang.StringgetDisplayPathOrSource()java.util.UUIDgetId()The unique id for this event.java.lang.StringgetLabel()Returns the "Label" property, or "Name" if not defined.AlarmStateTransitiongetLastEventState()Returns the most recent transition, or if this event represents a single state, the particular state that it represents.PropertySetgetLocals()java.lang.StringgetName()java.lang.StringgetNotes()<T> TgetOrDefault(Property<T> prop)<T> TgetOrElse(Property<T> property, T value)Get the value for a givenProperty, or else fall back to value if it's not present.AlarmPrioritygetPriority()Returns the priority of the alarm event.java.util.Collection<Property<?>>getProperties()QualifiedPathgetSource()The path to the alarm that generated this event.AlarmStategetState()Returns the current state, as an enum.java.util.List<PropertyValue>getValues()Returns the opaque PropertyValue objects.booleanisAcked()booleanisCleared()booleanisExtended(Property<?> prop)Returns whether this property set contains a value for the prop, and the prop was actually inherited.booleanisInherited(Property<?> prop)Indicates whether the property was inherited from a parent type.booleanisShelved()Returns whether this is event is currently shelved, if the ShelfExpiration property is set, or whether the event was shelved, for journaled events, based on whether the IsShelved property is set.java.util.Iterator<PropertyValue>iterator()voidmerge(PropertySet other)voidonPipelineDropout()voidremove(Property<?> prop)<T> voidset(Property<T> prop, T value)voidset(PropertyValue propValue)<T> voidsetGlobal(Property<T> p, T value)java.lang.StringtoString()- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface com.inductiveautomation.ignition.common.config.MutablePropertyValueSourcemerge
 - 
Methods inherited from interface com.inductiveautomation.ignition.common.config.PropertySetextend, getExtension, newDefaultInstance, newExtension
 - 
Methods inherited from interface com.inductiveautomation.ignition.common.config.PropertyValueSourcegetNonNull, getNonNull
 
- 
 
- 
- 
- 
Constructor Detail- 
AlarmEventInstancepublic AlarmEventInstance(AlarmEvent core) 
 - 
AlarmEventInstancepublic AlarmEventInstance(AlarmEvent core, AlarmStateTransition transition) Convenience constructor for branching on new state transition *
 
- 
 - 
Method Detail- 
branchpublic static AlarmEventInstance branch(AlarmEvent event) Creates a new instance, incrementing the BranchDepth property.
 - 
onPipelineDropoutpublic void onPipelineDropout() - Specified by:
- onPipelineDropoutin interface- AlarmPipelineMonitor
 
 - 
getLocalspublic PropertySet getLocals() 
 - 
getLastEventState@Nullable public AlarmStateTransition getLastEventState() Description copied from interface:AlarmEventReturns the most recent transition, or if this event represents a single state, the particular state that it represents.- Specified by:
- getLastEventStatein interface- AlarmEvent
 
 - 
containspublic boolean contains(Property<?> prop) - Specified by:
- containsin interface- PropertyValueSource
- Returns:
- True if the source contains a value for prop.
 
 - 
getOrDefault@Nullable public <T> T getOrDefault(Property<T> prop) - Specified by:
- getOrDefaultin interface- PropertyValueSource
- Returns:
- The value for prop or Property.getDefaultValue()if not present. Can return null if the value is null.
 
 - 
getpublic <T> T get(Property<T> prop) Description copied from interface:PropertyValueSourceRetrieves the value of the property, or null if this set doesn't contain that property.- Specified by:
- getin interface- PropertyValueSource
 
 - 
iteratorpublic java.util.Iterator<PropertyValue> iterator() - Specified by:
- iteratorin interface- java.lang.Iterable<PropertyValue>
 
 - 
setpublic <T> void set(Property<T> prop, T value) - Specified by:
- setin interface- MutablePropertyValueSource
 
 - 
setGlobalpublic <T> void setGlobal(Property<T> p, T value) 
 - 
getOrElsepublic <T> T getOrElse(Property<T> property, T value) Description copied from interface:PropertyValueSourceGet the value for a givenProperty, or else fall back to value if it's not present.- Specified by:
- getOrElsein interface- PropertyValueSource
- Parameters:
- property- The- Propertyfor which a value is to be retrieved.
- value- The value to default to if property isn't present.
- Returns:
- The value of property if present, value if not. Can return null if the value is null.
 
 - 
setpublic void set(PropertyValue propValue) - Specified by:
- setin interface- MutablePropertyValueSource
 
 - 
removepublic void remove(Property<?> prop) - Specified by:
- removein interface- MutablePropertyValueSource
 
 - 
getPropertiespublic java.util.Collection<Property<?>> getProperties() - Specified by:
- getPropertiesin interface- PropertyValueSource
 
 - 
getValuespublic java.util.List<PropertyValue> getValues() Description copied from interface:PropertyValueSourceReturns the opaque PropertyValue objects. This can be useful when you want to avoid the strict type checking of the value, and it's important to note that if the property is bound, the value will be a BoundValue. Be very careful about overriding, and make sure to maintain the methodology of using getProperties to iterate and get (or getOrDefault), to get the value, because those are all handled differently by BoundPropertySets, ExtendedPropertySets, etc.- Specified by:
- getValuesin interface- PropertyValueSource
 
 - 
getIdpublic java.util.UUID getId() Description copied from interface:AlarmEventThe unique id for this event. Generated when the alarm is first generated, and then maintained for the life of the alarm event cycle.- Specified by:
- getIdin interface- AlarmEvent
 
 - 
isExtendedpublic boolean isExtended(Property<?> prop) Description copied from interface:PropertySetReturns whether this property set contains a value for the prop, and the prop was actually inherited. In other words, this is true if the property is inherited, and an override value is present.- Specified by:
- isExtendedin interface- PropertySet
 
 - 
isInheritedpublic boolean isInherited(Property<?> prop) Description copied from interface:PropertySetIndicates whether the property was inherited from a parent type.- Specified by:
- isInheritedin interface- PropertySet
 
 - 
mergepublic void merge(PropertySet other) - Specified by:
- mergein interface- Mergable<PropertySet>
 
 - 
getSourcepublic QualifiedPath getSource() Description copied from interface:AlarmEventThe path to the alarm that generated this event.- Specified by:
- getSourcein interface- AlarmEvent
 
 - 
getNamepublic java.lang.String getName() - Specified by:
- getNamein interface- AlarmEvent
 
 - 
getPrioritypublic AlarmPriority getPriority() Description copied from interface:AlarmEventReturns the priority of the alarm event.- Specified by:
- getPriorityin interface- AlarmEvent
 
 - 
getDisplayPathpublic StringPath getDisplayPath() - Specified by:
- getDisplayPathin interface- AlarmEvent
 
 - 
getDisplayPathOrSourcepublic java.lang.String getDisplayPathOrSource() - Specified by:
- getDisplayPathOrSourcein interface- AlarmEvent
 
 - 
getLabelpublic java.lang.String getLabel() Description copied from interface:AlarmEventReturns the "Label" property, or "Name" if not defined.- Specified by:
- getLabelin interface- AlarmEvent
 
 - 
activepublic void active(EventData activeData) - Specified by:
- activein interface- AlarmEvent
 
 - 
acknowledgepublic void acknowledge(EventData ackData) - Specified by:
- acknowledgein interface- AlarmEvent
 
 - 
clearpublic void clear(EventData clearData) - Specified by:
- clearin interface- AlarmEvent
 
 - 
isClearedpublic boolean isCleared() - Specified by:
- isClearedin interface- AlarmEvent
 
 - 
isAckedpublic boolean isAcked() - Specified by:
- isAckedin interface- AlarmEvent
 
 - 
isShelvedpublic boolean isShelved() Description copied from interface:AlarmEventReturns whether this is event is currently shelved, if the ShelfExpiration property is set, or whether the event was shelved, for journaled events, based on whether the IsShelved property is set.- Specified by:
- isShelvedin interface- AlarmEvent
 
 - 
getStatepublic AlarmState getState() Description copied from interface:AlarmEventReturns the current state, as an enum. If this event represents a single state, such as the result from a journal query, this value will be misleading. In that case, getLastEventState() is the more accurate state function to use.- Specified by:
- getStatein interface- AlarmEvent
 
 - 
getActiveDatapublic EventData getActiveData() - Specified by:
- getActiveDatain interface- AlarmEvent
 
 - 
getClearedDatapublic EventData getClearedData() - Specified by:
- getClearedDatain interface- AlarmEvent
 
 - 
getAckDatapublic EventData getAckData() - Specified by:
- getAckDatain interface- AlarmEvent
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
getNotespublic java.lang.String getNotes() - Specified by:
- getNotesin interface- AlarmEvent
 
 
- 
 
-