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.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name="POCD_MT000040.Authenticator", propOrder={"realmCode", "typeId", "templateId", "time", "signatureCode", "assignedEntity"}) public class POCDMT000040Authenticator { protected List<CS> realmCode; protected POCDMT000040InfrastructureRootTypeId typeId; protected List<II> templateId; @XmlElement(required=true) protected TS time; @XmlElement(required=true) protected CS signatureCode; @XmlElement(required=true) protected POCDMT000040AssignedEntity assignedEntity; @XmlAttribute(name="nullFlavor") protected List<String> nullFlavor; @XmlAttribute(name="typeCode") protected List<String> typeCode; 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 TS getTime() { return this.time; } public void setTime(TS value) { this.time = value; } public CS getSignatureCode() { return this.signatureCode; } public void setSignatureCode(CS value) { this.signatureCode = value; } public POCDMT000040AssignedEntity getAssignedEntity() { return this.assignedEntity; } public void setAssignedEntity(POCDMT000040AssignedEntity value) { this.assignedEntity = value; } public List<String> getNullFlavor() { if (this.nullFlavor == null) { this.nullFlavor = new ArrayList(); } return this.nullFlavor; } public List<String> getTypeCode() { if (this.typeCode == null) { this.typeCode = new ArrayList(); } return this.typeCode; } }