All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.projecthusky.common.hl7cdar2.POCDMT000040Component4 Maven / Gradle / Ivy

/*
 * This code is made available under the terms of the Eclipse Public License v1.0
 * in the github project https://github.com/project-husky/husky there you also
 * find a list of the contributors and the license information.
 *
 * This project has been developed further and modified by the joined working group Husky
 * on the basis of the eHealth Connector opensource project from June 28, 2021,
 * whereas medshare GmbH is the initial and main contributor/author of the eHealth Connector.
 *
 */
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2020.07.09 um 01:07:39 PM CEST
//

package org.projecthusky.common.hl7cdar2;

import org.checkerframework.checker.nullness.qual.NonNull;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;

/**
 * 

* Java-Klasse für POCD_MT000040.Component4 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="POCD_MT000040.Component4">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="realmCode" type="{urn:hl7-org:v3}CS" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="typeId" type="{urn:hl7-org:v3}POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0"/>
 *         <element name="templateId" type="{urn:hl7-org:v3}II" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="sequenceNumber" type="{urn:hl7-org:v3}INT" minOccurs="0"/>
 *         <element name="seperatableInd" type="{urn:hl7-org:v3}BL" minOccurs="0"/>
 *         <choice>
 *           <element name="act" type="{urn:hl7-org:v3}POCD_MT000040.Act"/>
 *           <element name="encounter" type="{urn:hl7-org:v3}POCD_MT000040.Encounter"/>
 *           <element name="observation" type="{urn:hl7-org:v3}POCD_MT000040.Observation"/>
 *           <element name="observationMedia" type="{urn:hl7-org:v3}POCD_MT000040.ObservationMedia"/>
 *           <element name="organizer" type="{urn:hl7-org:v3}POCD_MT000040.Organizer"/>
 *           <element name="procedure" type="{urn:hl7-org:v3}POCD_MT000040.Procedure"/>
 *           <element name="regionOfInterest" type="{urn:hl7-org:v3}POCD_MT000040.RegionOfInterest"/>
 *           <element name="substanceAdministration" type="{urn:hl7-org:v3}POCD_MT000040.SubstanceAdministration"/>
 *           <element name="supply" type="{urn:hl7-org:v3}POCD_MT000040.Supply"/>
 *         </choice>
 *       </sequence>
 *       <attribute name="nullFlavor" type="{urn:hl7-org:v3}NullFlavor" />
 *       <attribute name="typeCode" type="{urn:hl7-org:v3}ActRelationshipHasComponent" fixed="COMP" />
 *       <attribute name="contextConductionInd" type="{urn:hl7-org:v3}bl" fixed="true" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "POCD_MT000040.Component4", propOrder = {"realmCode", "typeId", "templateId", "sequenceNumber", "seperatableInd", "act", "encounter", "observation", "observationMedia", "organizer", "procedure", "regionOfInterest", "substanceAdministration", "supply"}) public class POCDMT000040Component4 { protected List realmCode; protected POCDMT000040InfrastructureRootTypeId typeId; protected List templateId; protected INT sequenceNumber; protected BL seperatableInd; protected POCDMT000040Act act; protected POCDMT000040Encounter encounter; protected POCDMT000040Observation observation; protected POCDMT000040ObservationMedia observationMedia; protected POCDMT000040Organizer organizer; protected POCDMT000040Procedure procedure; protected POCDMT000040RegionOfInterest regionOfInterest; protected POCDMT000040SubstanceAdministration substanceAdministration; protected POCDMT000040Supply supply; @XmlAttribute(name = "nullFlavor") protected List nullFlavor; @XmlAttribute(name = "typeCode") protected ActRelationshipHasComponent typeCode; @XmlAttribute(name = "contextConductionInd") protected Boolean contextConductionInd; /** * Ruft den Wert der act-Eigenschaft ab. * * @return possible object is {@link POCDMT000040Act } */ public POCDMT000040Act getAct() { return act; } /** * Ruft den Wert der encounter-Eigenschaft ab. * * @return possible object is {@link POCDMT000040Encounter } */ public POCDMT000040Encounter getEncounter() { return encounter; } /** * Gets the value of the nullFlavor 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 * set method for the nullFlavor property. * *

* For example, to add a new item, do as follows:

     *    getNullFlavor().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } */ @NonNull public List getNullFlavor() { if (nullFlavor == null) { nullFlavor = new ArrayList<>(); } return this.nullFlavor; } /** * Ruft den Wert der observation-Eigenschaft ab. * * @return possible object is {@link POCDMT000040Observation } */ public POCDMT000040Observation getObservation() { return observation; } /** * Ruft den Wert der observationMedia-Eigenschaft ab. * * @return possible object is {@link POCDMT000040ObservationMedia } */ public POCDMT000040ObservationMedia getObservationMedia() { return observationMedia; } /** * Ruft den Wert der organizer-Eigenschaft ab. * * @return possible object is {@link POCDMT000040Organizer } */ public POCDMT000040Organizer getOrganizer() { return organizer; } /** * Ruft den Wert der procedure-Eigenschaft ab. * * @return possible object is {@link POCDMT000040Procedure } */ public POCDMT000040Procedure getProcedure() { return procedure; } /** * Gets the value of the realmCode 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 * set method for the realmCode property. * *

* For example, to add a new item, do as follows:

     *    getRealmCode().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list {@link CS } */ @NonNull public List getRealmCode() { if (realmCode == null) { realmCode = new ArrayList<>(); } return this.realmCode; } /** * Ruft den Wert der regionOfInterest-Eigenschaft ab. * * @return possible object is {@link POCDMT000040RegionOfInterest } */ public POCDMT000040RegionOfInterest getRegionOfInterest() { return regionOfInterest; } /** * Ruft den Wert der seperatableInd-Eigenschaft ab. * * @return possible object is {@link BL } */ public BL getSeperatableInd() { return seperatableInd; } /** * Ruft den Wert der sequenceNumber-Eigenschaft ab. * * @return possible object is {@link INT } */ public INT getSequenceNumber() { return sequenceNumber; } /** * Ruft den Wert der substanceAdministration-Eigenschaft ab. * * @return possible object is {@link POCDMT000040SubstanceAdministration } */ public POCDMT000040SubstanceAdministration getSubstanceAdministration() { return substanceAdministration; } /** * Ruft den Wert der supply-Eigenschaft ab. * * @return possible object is {@link POCDMT000040Supply } */ public POCDMT000040Supply getSupply() { return supply; } /** * Gets the value of the templateId 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 * set method for the templateId property. * *

* For example, to add a new item, do as follows:

     *    getTemplateId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list {@link II } */ @NonNull public List getTemplateId() { if (templateId == null) { templateId = new ArrayList<>(); } return this.templateId; } /** * Ruft den Wert der typeCode-Eigenschaft ab. * * @return possible object is {@link ActRelationshipHasComponent } */ @NonNull public ActRelationshipHasComponent getTypeCode() { if (typeCode == null) { return ActRelationshipHasComponent.COMP; } else { return typeCode; } } /** * Ruft den Wert der typeId-Eigenschaft ab. * * @return possible object is {@link POCDMT000040InfrastructureRootTypeId } */ public POCDMT000040InfrastructureRootTypeId getTypeId() { return typeId; } /** * Ruft den Wert der contextConductionInd-Eigenschaft ab. * * @return possible object is {@link Boolean } */ public boolean isContextConductionInd() { if (contextConductionInd == null) { return true; } else { return contextConductionInd; } } /** * Legt den Wert der act-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040Act } */ public void setAct(POCDMT000040Act value) { this.act = value; } /** * Legt den Wert der contextConductionInd-Eigenschaft fest. * * @param value allowed object is {@link Boolean } */ public void setContextConductionInd(Boolean value) { this.contextConductionInd = value; } /** * Legt den Wert der encounter-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040Encounter } */ public void setEncounter(POCDMT000040Encounter value) { this.encounter = value; } /** * Legt den Wert der observation-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040Observation } */ public void setObservation(POCDMT000040Observation value) { this.observation = value; } /** * Legt den Wert der observationMedia-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040ObservationMedia } */ public void setObservationMedia(POCDMT000040ObservationMedia value) { this.observationMedia = value; } /** * Legt den Wert der organizer-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040Organizer } */ public void setOrganizer(POCDMT000040Organizer value) { this.organizer = value; } /** * Legt den Wert der procedure-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040Procedure } */ public void setProcedure(POCDMT000040Procedure value) { this.procedure = value; } /** * Legt den Wert der regionOfInterest-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040RegionOfInterest } */ public void setRegionOfInterest(POCDMT000040RegionOfInterest value) { this.regionOfInterest = value; } /** * Legt den Wert der seperatableInd-Eigenschaft fest. * * @param value allowed object is {@link BL } */ public void setSeperatableInd(BL value) { this.seperatableInd = value; } /** * Legt den Wert der sequenceNumber-Eigenschaft fest. * * @param value allowed object is {@link INT } */ public void setSequenceNumber(INT value) { this.sequenceNumber = value; } /** * Legt den Wert der substanceAdministration-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040SubstanceAdministration } */ public void setSubstanceAdministration(POCDMT000040SubstanceAdministration value) { this.substanceAdministration = value; } /** * Legt den Wert der supply-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040Supply } */ public void setSupply(POCDMT000040Supply value) { this.supply = value; } /** * Legt den Wert der typeCode-Eigenschaft fest. * * @param value allowed object is {@link ActRelationshipHasComponent } */ public void setTypeCode(ActRelationshipHasComponent value) { this.typeCode = value; } /** * Legt den Wert der typeId-Eigenschaft fest. * * @param value allowed object is {@link POCDMT000040InfrastructureRootTypeId } */ public void setTypeId(POCDMT000040InfrastructureRootTypeId value) { this.typeId = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy