// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // 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: 2015.03.13 at 12:17:21 PM MEZ // package ch.fd.invoice400.response; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for rejectedErrorType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="rejectedErrorType"> * <complexContent> * <extension base="{http://www.xmlData.ch/xmlInvoice/XSD}errorType"> * <choice minOccurs="0"> * <element name="error_business" type="{http://www.xmlData.ch/xmlInvoice/XSD}errorBusinessType"/> * <element name="error_schema" type="{http://www.xmlData.ch/xmlInvoice/XSD}errorSchemaType"/> * </choice> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "rejectedErrorType", propOrder = { "errorBusiness", "errorSchema" }) public class RejectedErrorType extends ErrorType { @XmlElement(name = "error_business", namespace = "http://www.xmlData.ch/xmlInvoice/XSD") protected ErrorBusinessType errorBusiness; @XmlElement(name = "error_schema", namespace = "http://www.xmlData.ch/xmlInvoice/XSD") protected ErrorSchemaType errorSchema; /** * Gets the value of the errorBusiness property. * * @return possible object is {@link ErrorBusinessType } * */ public ErrorBusinessType getErrorBusiness(){ return errorBusiness; } /** * Sets the value of the errorBusiness property. * * @param value * allowed object is {@link ErrorBusinessType } * */ public void setErrorBusiness(ErrorBusinessType value){ this.errorBusiness = value; } /** * Gets the value of the errorSchema property. * * @return possible object is {@link ErrorSchemaType } * */ public ErrorSchemaType getErrorSchema(){ return errorSchema; } /** * Sets the value of the errorSchema property. * * @param value * allowed object is {@link ErrorSchemaType } * */ public void setErrorSchema(ErrorSchemaType value){ this.errorSchema = value; } }