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

riv.clinicalprocess.healthcond.actoutcome._3.Attested Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

package riv.clinicalprocess.healthcond.actoutcome._3;

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.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="attestedTime" type="{urn:riv:clinicalprocess:healthcond:actoutcome:3.1}TimeStampType"/>
 *         <element name="attesterHSAId" type="{urn:riv:clinicalprocess:healthcond:actoutcome:3.1}HSAIdType"/>
 *         <element name="attesterName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "attestedTime", "attesterHSAId", "attesterName", "any" }) @XmlRootElement(name = "attested", namespace = "urn:riv:clinicalprocess:healthcond:actoutcome:3.1") public class Attested { @XmlElement(namespace = "urn:riv:clinicalprocess:healthcond:actoutcome:3.1", required = true) protected String attestedTime; @XmlElement(namespace = "urn:riv:clinicalprocess:healthcond:actoutcome:3.1", required = true) protected String attesterHSAId; @XmlElement(namespace = "urn:riv:clinicalprocess:healthcond:actoutcome:3.1") protected String attesterName; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the attestedTime property. * * @return * possible object is * {@link String } * */ public String getAttestedTime() { return attestedTime; } /** * Sets the value of the attestedTime property. * * @param value * allowed object is * {@link String } * */ public void setAttestedTime(String value) { this.attestedTime = value; } /** * Gets the value of the attesterHSAId property. * * @return * possible object is * {@link String } * */ public String getAttesterHSAId() { return attesterHSAId; } /** * Sets the value of the attesterHSAId property. * * @param value * allowed object is * {@link String } * */ public void setAttesterHSAId(String value) { this.attesterHSAId = value; } /** * Gets the value of the attesterName property. * * @return * possible object is * {@link String } * */ public String getAttesterName() { return attesterName; } /** * Sets the value of the attesterName property. * * @param value * allowed object is * {@link String } * */ public void setAttesterName(String value) { this.attesterName = value; } /** * Gets the value of the any 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 any property. * *

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

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } }