// // 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 headerType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="headerType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="sender" type="{http://www.xmlData.ch/xmlInvoice/XSD}headerPartyType"/> * <element name="intermediate" type="{http://www.xmlData.ch/xmlInvoice/XSD}headerPartyType"/> * <element name="recipient" type="{http://www.xmlData.ch/xmlInvoice/XSD}headerPartyType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "headerType", propOrder = { "sender", "intermediate", "recipient" }) public class HeaderType { @XmlElement(namespace = "http://www.xmlData.ch/xmlInvoice/XSD", required = true) protected HeaderPartyType sender; @XmlElement(namespace = "http://www.xmlData.ch/xmlInvoice/XSD", required = true) protected HeaderPartyType intermediate; @XmlElement(namespace = "http://www.xmlData.ch/xmlInvoice/XSD", required = true) protected HeaderPartyType recipient; /** * Gets the value of the sender property. * * @return possible object is {@link HeaderPartyType } * */ public HeaderPartyType getSender(){ return sender; } /** * Sets the value of the sender property. * * @param value * allowed object is {@link HeaderPartyType } * */ public void setSender(HeaderPartyType value){ this.sender = value; } /** * Gets the value of the intermediate property. * * @return possible object is {@link HeaderPartyType } * */ public HeaderPartyType getIntermediate(){ return intermediate; } /** * Sets the value of the intermediate property. * * @param value * allowed object is {@link HeaderPartyType } * */ public void setIntermediate(HeaderPartyType value){ this.intermediate = value; } /** * Gets the value of the recipient property. * * @return possible object is {@link HeaderPartyType } * */ public HeaderPartyType getRecipient(){ return recipient; } /** * Sets the value of the recipient property. * * @param value * allowed object is {@link HeaderPartyType } * */ public void setRecipient(HeaderPartyType value){ this.recipient = value; } }