Class AlertSystemState
- java.lang.Object
-
- org.somda.sdc.biceps.model.participant.AbstractState
-
- org.somda.sdc.biceps.model.participant.AbstractAlertState
-
- org.somda.sdc.biceps.model.participant.AlertSystemState
-
- All Implemented Interfaces:
Cloneable,org.jvnet.jaxb2_commons.lang.CopyTo2,org.jvnet.jaxb2_commons.lang.ToString2
public class AlertSystemState extends AbstractAlertState implements Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo2, org.jvnet.jaxb2_commons.lang.ToString2
AlertSystemState contains the dynamic/volatile information of an ALERT SYSTEM. See pm:AlertSystemDescriptor for static information.Java class for AlertSystemState complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AlertSystemState"> <complexContent> <extension base="{http://standards.ieee.org/downloads/11073/11073-10207-2017/participant}AbstractAlertState"> <sequence> <element name="SystemSignalActivation" type="{http://standards.ieee.org/downloads/11073/11073-10207-2017/participant}SystemSignalActivation" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="LastSelfCheck" type="{http://standards.ieee.org/downloads/11073/11073-10207-2017/participant}Timestamp" /> <attribute name="SelfCheckCount" type="{http://www.w3.org/2001/XMLSchema}long" /> <attribute name="PresentPhysiologicalAlarmConditions" type="{http://standards.ieee.org/downloads/11073/11073-10207-2017/participant}AlertConditionReference" /> <attribute name="PresentTechnicalAlarmConditions" type="{http://standards.ieee.org/downloads/11073/11073-10207-2017/participant}AlertConditionReference" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected InstantlastSelfCheckprotected List<String>presentPhysiologicalAlarmConditionsprotected List<String>presentTechnicalAlarmConditionsprotected LongselfCheckCountprotected List<SystemSignalActivation>systemSignalActivation-
Fields inherited from class org.somda.sdc.biceps.model.participant.AbstractAlertState
activationState
-
Fields inherited from class org.somda.sdc.biceps.model.participant.AbstractState
descriptorHandle, descriptorVersion, extension, stateVersion
-
-
Constructor Summary
Constructors Constructor Description AlertSystemState()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringBuilderappend(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)StringBuilderappendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)Objectclone()ObjectcopyTo(Object target)ObjectcopyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy2 strategy)ObjectcreateNewInstance()booleanequals(Object object)InstantgetLastSelfCheck()Gets the value of the lastSelfCheck property.List<String>getPresentPhysiologicalAlarmConditions()Gets the value of the presentPhysiologicalAlarmConditions property.List<String>getPresentTechnicalAlarmConditions()Gets the value of the presentTechnicalAlarmConditions property.LonggetSelfCheckCount()Gets the value of the selfCheckCount property.List<SystemSignalActivation>getSystemSignalActivation()Gets the value of the systemSignalActivation property.inthashCode()voidsetLastSelfCheck(Instant value)Sets the value of the lastSelfCheck property.voidsetPresentPhysiologicalAlarmConditions(List<String> value)voidsetPresentTechnicalAlarmConditions(List<String> value)voidsetSelfCheckCount(Long value)Sets the value of the selfCheckCount property.voidsetSystemSignalActivation(List<SystemSignalActivation> value)StringtoString()-
Methods inherited from class org.somda.sdc.biceps.model.participant.AbstractAlertState
getActivationState, setActivationState
-
Methods inherited from class org.somda.sdc.biceps.model.participant.AbstractState
getDescriptorHandle, getDescriptorVersion, getExtension, getStateVersion, setDescriptorHandle, setDescriptorVersion, setExtension, setStateVersion
-
-
-
-
Field Detail
-
systemSignalActivation
protected List<SystemSignalActivation> systemSignalActivation
-
lastSelfCheck
protected Instant lastSelfCheck
-
selfCheckCount
protected Long selfCheckCount
-
-
Method Detail
-
getSystemSignalActivation
public List<SystemSignalActivation> getSystemSignalActivation()
Gets the value of the systemSignalActivation property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the systemSignalActivation property.For example, to add a new item, do as follows:
getSystemSignalActivation().add(newItem);Objects of the following type(s) are allowed in the list
SystemSignalActivation
-
getLastSelfCheck
public Instant getLastSelfCheck()
Gets the value of the lastSelfCheck property.- Returns:
- possible object is
String
-
setLastSelfCheck
public void setLastSelfCheck(Instant value)
Sets the value of the lastSelfCheck property.- Parameters:
value- allowed object isString
-
getSelfCheckCount
public Long getSelfCheckCount()
Gets the value of the selfCheckCount property.- Returns:
- possible object is
Long
-
setSelfCheckCount
public void setSelfCheckCount(Long value)
Sets the value of the selfCheckCount property.- Parameters:
value- allowed object isLong
-
getPresentPhysiologicalAlarmConditions
public List<String> getPresentPhysiologicalAlarmConditions()
Gets the value of the presentPhysiologicalAlarmConditions property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the presentPhysiologicalAlarmConditions property.For example, to add a new item, do as follows:
getPresentPhysiologicalAlarmConditions().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getPresentTechnicalAlarmConditions
public List<String> getPresentTechnicalAlarmConditions()
Gets the value of the presentTechnicalAlarmConditions property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the presentTechnicalAlarmConditions property.For example, to add a new item, do as follows:
getPresentTechnicalAlarmConditions().add(newItem);Objects of the following type(s) are allowed in the list
String
-
setSystemSignalActivation
public void setSystemSignalActivation(List<SystemSignalActivation> value)
-
setPresentPhysiologicalAlarmConditions
public void setPresentPhysiologicalAlarmConditions(List<String> value)
-
setPresentTechnicalAlarmConditions
public void setPresentTechnicalAlarmConditions(List<String> value)
-
clone
public Object clone()
- Overrides:
clonein classAbstractAlertState
-
copyTo
public Object copyTo(Object target)
- Specified by:
copyToin interfaceorg.jvnet.jaxb2_commons.lang.CopyTo2- Overrides:
copyToin classAbstractAlertState
-
copyTo
public Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy2 strategy)
- Specified by:
copyToin interfaceorg.jvnet.jaxb2_commons.lang.CopyTo2- Overrides:
copyToin classAbstractAlertState
-
createNewInstance
public Object createNewInstance()
- Specified by:
createNewInstancein interfaceorg.jvnet.jaxb2_commons.lang.CopyTo2- Overrides:
createNewInstancein classAbstractAlertState
-
equals
public boolean equals(Object object)
- Overrides:
equalsin classAbstractAlertState
-
hashCode
public int hashCode()
- Overrides:
hashCodein classAbstractAlertState
-
toString
public String toString()
- Overrides:
toStringin classAbstractAlertState
-
append
public StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
- Specified by:
appendin interfaceorg.jvnet.jaxb2_commons.lang.ToString2- Overrides:
appendin classAbstractAlertState
-
appendFields
public StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
- Specified by:
appendFieldsin interfaceorg.jvnet.jaxb2_commons.lang.ToString2- Overrides:
appendFieldsin classAbstractAlertState
-
-