//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.01.18 at 06:14:35 PM CST
//
package org.astm.ccr;
import java.math.BigInteger;
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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:astm-org:CCR}Description" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Status" minOccurs="0"/>
* <element name="Severity" type="{urn:astm-org:CCR}CodedDescriptionType" minOccurs="0"/>
* <element name="Interventions" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Intervention" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <sequence>
* <element name="CCRDataObjectID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="DateTime" type="{urn:astm-org:CCR}DateTimeType" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Type" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Description" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Status" minOccurs="0"/>
* <group ref="{urn:astm-org:CCR}SLRCGroup"/>
* </sequence>
* <sequence>
* <element ref="{urn:astm-org:CCR}Procedures" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Products" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Medications" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Immunizations" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Services" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Encounters" minOccurs="0"/>
* </sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="ReactionSequencePosition" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="MultipleReactionModifier" type="{urn:astm-org:CCR}CodedDescriptionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"description",
"status",
"severity",
"interventions",
"reactionSequencePosition",
"multipleReactionModifier"
})
@XmlRootElement(name = "Reaction")
public class Reaction {
@XmlElement(name = "Description")
protected CodedDescriptionType description;
@XmlElement(name = "Status")
protected CodedDescriptionType status;
@XmlElement(name = "Severity")
protected CodedDescriptionType severity;
@XmlElement(name = "Interventions")
protected Reaction.Interventions interventions;
@XmlElement(name = "ReactionSequencePosition")
protected BigInteger reactionSequencePosition;
@XmlElement(name = "MultipleReactionModifier")
protected CodedDescriptionType multipleReactionModifier;
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link CodedDescriptionType }
*
*/
public CodedDescriptionType getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link CodedDescriptionType }
*
*/
public void setDescription(CodedDescriptionType value) {
this.description = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link CodedDescriptionType }
*
*/
public CodedDescriptionType getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link CodedDescriptionType }
*
*/
public void setStatus(CodedDescriptionType value) {
this.status = value;
}
/**
* Gets the value of the severity property.
*
* @return
* possible object is
* {@link CodedDescriptionType }
*
*/
public CodedDescriptionType getSeverity() {
return severity;
}
/**
* Sets the value of the severity property.
*
* @param value
* allowed object is
* {@link CodedDescriptionType }
*
*/
public void setSeverity(CodedDescriptionType value) {
this.severity = value;
}
/**
* Gets the value of the interventions property.
*
* @return
* possible object is
* {@link Reaction.Interventions }
*
*/
public Reaction.Interventions getInterventions() {
return interventions;
}
/**
* Sets the value of the interventions property.
*
* @param value
* allowed object is
* {@link Reaction.Interventions }
*
*/
public void setInterventions(Reaction.Interventions value) {
this.interventions = value;
}
/**
* Gets the value of the reactionSequencePosition property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getReactionSequencePosition() {
return reactionSequencePosition;
}
/**
* Sets the value of the reactionSequencePosition property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setReactionSequencePosition(BigInteger value) {
this.reactionSequencePosition = value;
}
/**
* Gets the value of the multipleReactionModifier property.
*
* @return
* possible object is
* {@link CodedDescriptionType }
*
*/
public CodedDescriptionType getMultipleReactionModifier() {
return multipleReactionModifier;
}
/**
* Sets the value of the multipleReactionModifier property.
*
* @param value
* allowed object is
* {@link CodedDescriptionType }
*
*/
public void setMultipleReactionModifier(CodedDescriptionType value) {
this.multipleReactionModifier = value;
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Intervention" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <sequence>
* <element name="CCRDataObjectID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="DateTime" type="{urn:astm-org:CCR}DateTimeType" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Type" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Description" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Status" minOccurs="0"/>
* <group ref="{urn:astm-org:CCR}SLRCGroup"/>
* </sequence>
* <sequence>
* <element ref="{urn:astm-org:CCR}Procedures" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Products" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Medications" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Immunizations" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Services" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Encounters" minOccurs="0"/>
* </sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"intervention"
})
public static class Interventions {
@XmlElement(name = "Intervention", required = true)
protected List<Reaction.Interventions.Intervention> intervention;
/**
* Gets the value of the intervention property.
*
* <p>
* 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 <CODE>set</CODE> method for the intervention property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getIntervention().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Reaction.Interventions.Intervention }
*
*
*/
public List<Reaction.Interventions.Intervention> getIntervention() {
if (intervention == null) {
intervention = new ArrayList<Reaction.Interventions.Intervention>();
}
return this.intervention;
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <sequence>
* <element name="CCRDataObjectID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="DateTime" type="{urn:astm-org:CCR}DateTimeType" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Type" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Description" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Status" minOccurs="0"/>
* <group ref="{urn:astm-org:CCR}SLRCGroup"/>
* </sequence>
* <sequence>
* <element ref="{urn:astm-org:CCR}Procedures" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Products" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Medications" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Immunizations" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Services" minOccurs="0"/>
* <element ref="{urn:astm-org:CCR}Encounters" minOccurs="0"/>
* </sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"ccrDataObjectID",
"dateTime",
"type",
"description",
"status",
"source",
"internalCCRLink",
"referenceID",
"commentID",
"signature",
"procedures",
"products",
"medications",
"immunizations",
"services",
"encounters"
})
public static class Intervention {
@XmlElement(name = "CCRDataObjectID", required = true)
protected String ccrDataObjectID;
@XmlElement(name = "DateTime")
protected List<DateTimeType> dateTime;
@XmlElement(name = "Type")
protected CodedDescriptionType type;
@XmlElement(name = "Description")
protected CodedDescriptionType description;
@XmlElement(name = "Status")
protected CodedDescriptionType status;
@XmlElement(name = "Source", required = true)
protected List<SourceType> source;
@XmlElement(name = "InternalCCRLink")
protected List<InternalCCRLink> internalCCRLink;
@XmlElement(name = "ReferenceID")
protected List<String> referenceID;
@XmlElement(name = "CommentID")
protected List<String> commentID;
@XmlElement(name = "Signature")
protected List<org.astm.ccr.CCRCodedDataObjectType.Signature> signature;
@XmlElement(name = "Procedures")
protected Procedures procedures;
@XmlElement(name = "Products")
protected Products products;
@XmlElement(name = "Medications")
protected Medications medications;
@XmlElement(name = "Immunizations")
protected Immunizations immunizations;
@XmlElement(name = "Services")
protected Services services;
@XmlElement(name = "Encounters")
protected Encounters encounters;
/**
* Gets the value of the ccrDataObjectID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCCRDataObjectID() {
return ccrDataObjectID;
}
/**
* Sets the value of the ccrDataObjectID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCCRDataObjectID(String value) {
this.ccrDataObjectID = value;
}
/**
* Gets the value of the dateTime property.
*
* <p>
* 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 <CODE>set</CODE> method for the dateTime property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDateTime().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link DateTimeType }
*
*
*/
public List<DateTimeType> getDateTime() {
if (dateTime == null) {
dateTime = new ArrayList<DateTimeType>();
}
return this.dateTime;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link CodedDescriptionType }
*
*/
public CodedDescriptionType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link CodedDescriptionType }
*
*/
public void setType(CodedDescriptionType value) {
this.type = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link CodedDescriptionType }
*
*/
public CodedDescriptionType getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link CodedDescriptionType }
*
*/
public void setDescription(CodedDescriptionType value) {
this.description = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link CodedDescriptionType }
*
*/
public CodedDescriptionType getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link CodedDescriptionType }
*
*/
public void setStatus(CodedDescriptionType value) {
this.status = value;
}
/**
* Gets the value of the source property.
*
* <p>
* 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 <CODE>set</CODE> method for the source property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getSource().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link SourceType }
*
*
*/
public List<SourceType> getSource() {
if (source == null) {
source = new ArrayList<SourceType>();
}
return this.source;
}
/**
* Gets the value of the internalCCRLink property.
*
* <p>
* 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 <CODE>set</CODE> method for the internalCCRLink property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getInternalCCRLink().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link InternalCCRLink }
*
*
*/
public List<InternalCCRLink> getInternalCCRLink() {
if (internalCCRLink == null) {
internalCCRLink = new ArrayList<InternalCCRLink>();
}
return this.internalCCRLink;
}
/**
* Gets the value of the referenceID property.
*
* <p>
* 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 <CODE>set</CODE> method for the referenceID property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReferenceID().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getReferenceID() {
if (referenceID == null) {
referenceID = new ArrayList<String>();
}
return this.referenceID;
}
/**
* Gets the value of the commentID property.
*
* <p>
* 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 <CODE>set</CODE> method for the commentID property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getCommentID().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getCommentID() {
if (commentID == null) {
commentID = new ArrayList<String>();
}
return this.commentID;
}
/**
* Gets the value of the signature property.
*
* <p>
* 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 <CODE>set</CODE> method for the signature property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getSignature().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link org.astm.ccr.CCRCodedDataObjectType.Signature }
*
*
*/
public List<org.astm.ccr.CCRCodedDataObjectType.Signature> getSignature() {
if (signature == null) {
signature = new ArrayList<org.astm.ccr.CCRCodedDataObjectType.Signature>();
}
return this.signature;
}
/**
* Gets the value of the procedures property.
*
* @return
* possible object is
* {@link Procedures }
*
*/
public Procedures getProcedures() {
return procedures;
}
/**
* Sets the value of the procedures property.
*
* @param value
* allowed object is
* {@link Procedures }
*
*/
public void setProcedures(Procedures value) {
this.procedures = value;
}
/**
* Gets the value of the products property.
*
* @return
* possible object is
* {@link Products }
*
*/
public Products getProducts() {
return products;
}
/**
* Sets the value of the products property.
*
* @param value
* allowed object is
* {@link Products }
*
*/
public void setProducts(Products value) {
this.products = value;
}
/**
* Gets the value of the medications property.
*
* @return
* possible object is
* {@link Medications }
*
*/
public Medications getMedications() {
return medications;
}
/**
* Sets the value of the medications property.
*
* @param value
* allowed object is
* {@link Medications }
*
*/
public void setMedications(Medications value) {
this.medications = value;
}
/**
* Gets the value of the immunizations property.
*
* @return
* possible object is
* {@link Immunizations }
*
*/
public Immunizations getImmunizations() {
return immunizations;
}
/**
* Sets the value of the immunizations property.
*
* @param value
* allowed object is
* {@link Immunizations }
*
*/
public void setImmunizations(Immunizations value) {
this.immunizations = value;
}
/**
* Gets the value of the services property.
*
* @return
* possible object is
* {@link Services }
*
*/
public Services getServices() {
return services;
}
/**
* Sets the value of the services property.
*
* @param value
* allowed object is
* {@link Services }
*
*/
public void setServices(Services value) {
this.services = value;
}
/**
* Gets the value of the encounters property.
*
* @return
* possible object is
* {@link Encounters }
*
*/
public Encounters getEncounters() {
return encounters;
}
/**
* Sets the value of the encounters property.
*
* @param value
* allowed object is
* {@link Encounters }
*
*/
public void setEncounters(Encounters value) {
this.encounters = value;
}
}
}
}