
package gov.nist.hl7.ws.messagevalidation.xsd;

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>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="objectOID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="xmlReferencedStandard" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="xmlValidationContext" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="xmlMessageMetaData" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="xmlMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "objectOID",
    "xmlReferencedStandard",
    "xmlValidationContext",
    "xmlMessageMetaData",
    "xmlMessage"
})
@XmlRootElement(name = "validateMessage")
public class ValidateMessage {

    @XmlElement(required = true, nillable = true)
    protected String objectOID;
    @XmlElement(required = true, nillable = true)
    protected String xmlReferencedStandard;
    @XmlElement(required = true, nillable = true)
    protected String xmlValidationContext;
    @XmlElement(required = true, nillable = true)
    protected String xmlMessageMetaData;
    @XmlElement(required = true, nillable = true)
    protected String xmlMessage;

    /**
     * Gets the value of the objectOID property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getObjectOID() {
        return objectOID;
    }

    /**
     * Sets the value of the objectOID property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setObjectOID(String value) {
        this.objectOID = value;
    }

    /**
     * Gets the value of the xmlReferencedStandard property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getXmlReferencedStandard() {
        return xmlReferencedStandard;
    }

    /**
     * Sets the value of the xmlReferencedStandard property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setXmlReferencedStandard(String value) {
        this.xmlReferencedStandard = value;
    }

    /**
     * Gets the value of the xmlValidationContext property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getXmlValidationContext() {
        return xmlValidationContext;
    }

    /**
     * Sets the value of the xmlValidationContext property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setXmlValidationContext(String value) {
        this.xmlValidationContext = value;
    }

    /**
     * Gets the value of the xmlMessageMetaData property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getXmlMessageMetaData() {
        return xmlMessageMetaData;
    }

    /**
     * Sets the value of the xmlMessageMetaData property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setXmlMessageMetaData(String value) {
        this.xmlMessageMetaData = value;
    }

    /**
     * Gets the value of the xmlMessage property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getXmlMessage() {
        return xmlMessage;
    }

    /**
     * Sets the value of the xmlMessage property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setXmlMessage(String value) {
        this.xmlMessage = value;
    }

}
