// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.03.04 at 04:57:33 PM MEZ // package at.gv.util.xsd.omsp; 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; import javax.xml.datatype.XMLGregorianCalendar; /** *

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 ref="{http://reference.e-government.gv.at/namespace/moavv/20070102#}MandateID"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/moavv/20070102#}StatusDate"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/moavv/20070102#}Status"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/moavv/20070102#}RevocationDate"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "mandateID", "statusDate", "status", "revocationDate" }) @XmlRootElement(name = "SimpleResponse") public class SimpleResponse { @XmlElement(name = "MandateID", required = true) protected String mandateID; @XmlElement(name = "StatusDate", required = true) protected XMLGregorianCalendar statusDate; @XmlElement(name = "Status", required = true) protected String status; @XmlElement(name = "RevocationDate", required = true) protected XMLGregorianCalendar revocationDate; /** * Gets the value of the mandateID property. * * @return * possible object is * {@link String } * */ public String getMandateID() { return mandateID; } /** * Sets the value of the mandateID property. * * @param value * allowed object is * {@link String } * */ public void setMandateID(String value) { this.mandateID = value; } /** * Gets the value of the statusDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStatusDate() { return statusDate; } /** * Sets the value of the statusDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStatusDate(XMLGregorianCalendar value) { this.statusDate = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the revocationDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getRevocationDate() { return revocationDate; } /** * Sets the value of the revocationDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setRevocationDate(XMLGregorianCalendar value) { this.revocationDate = value; } }