package org.hl7.v3; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name="POCD_MT000040.ExternalDocument", propOrder={"realmCode", "typeId", "templateId", "id", "code", "text", "setId", "versionNumber"}) public class POCDMT000040ExternalDocument { protected List<CS> realmCode; protected POCDMT000040InfrastructureRootTypeId typeId; protected List<II> templateId; protected List<II> id; protected CD code; protected ED text; protected II setId; protected INT versionNumber; @XmlAttribute(name="nullFlavor") protected List<String> nullFlavor; @XmlAttribute(name="classCode") protected String classCode; @XmlAttribute(name="moodCode") protected List<String> moodCode; public List<CS> getRealmCode() { if (this.realmCode == null) { this.realmCode = new ArrayList(); } return this.realmCode; } public POCDMT000040InfrastructureRootTypeId getTypeId() { return this.typeId; } public void setTypeId(POCDMT000040InfrastructureRootTypeId value) { this.typeId = value; } public List<II> getTemplateId() { if (this.templateId == null) { this.templateId = new ArrayList(); } return this.templateId; } public List<II> getId() { if (this.id == null) { this.id = new ArrayList(); } return this.id; } public CD getCode() { return this.code; } public void setCode(CD value) { this.code = value; } public ED getText() { return this.text; } public void setText(ED value) { this.text = value; } public II getSetId() { return this.setId; } public void setSetId(II value) { this.setId = value; } public INT getVersionNumber() { return this.versionNumber; } public void setVersionNumber(INT value) { this.versionNumber = value; } public List<String> getNullFlavor() { if (this.nullFlavor == null) { this.nullFlavor = new ArrayList(); } return this.nullFlavor; } public String getClassCode() { if (this.classCode == null) { return "DOC"; } return this.classCode; } public void setClassCode(String value) { this.classCode = value; } public List<String> getMoodCode() { if (this.moodCode == null) { this.moodCode = new ArrayList(); } return this.moodCode; } }