package at.gv.util.xsd.mzs; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for DeliveryNotificationType complex type. * *

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

 * <complexType name="DeliveryNotificationType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}Success"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}Error"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}DeliveryStatement"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeliveryNotificationType", propOrder = { "success", "error", "deliveryStatement" }) public class DeliveryNotificationType { @XmlElement(name = "Success") protected SuccessType success; @XmlElement(name = "Error") protected ErrorType error; @XmlElement(name = "DeliveryStatement") protected DeliveryStatementType deliveryStatement; /** * Gets the value of the success property. * * @return * possible object is * {@link SuccessType } * */ public SuccessType getSuccess() { return success; } /** * Sets the value of the success property. * * @param value * allowed object is * {@link SuccessType } * */ public void setSuccess(SuccessType value) { this.success = value; } /** * Gets the value of the error property. * * @return * possible object is * {@link ErrorType } * */ public ErrorType getError() { return error; } /** * Sets the value of the error property. * * @param value * allowed object is * {@link ErrorType } * */ public void setError(ErrorType value) { this.error = value; } /** * Gets the value of the deliveryStatement property. * * @return * possible object is * {@link DeliveryStatementType } * */ public DeliveryStatementType getDeliveryStatement() { return deliveryStatement; } /** * Sets the value of the deliveryStatement property. * * @param value * allowed object is * {@link DeliveryStatementType } * */ public void setDeliveryStatement(DeliveryStatementType value) { this.deliveryStatement = value; } }