All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.drv.dsrv.extrastandard.namespace.response.Transport Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.02.27 at 11:29:43 PM CET 
//


package de.drv.dsrv.extrastandard.namespace.response;

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 de.drv.dsrv.extrastandard.namespace.components.AnyPlugInContainerType;
import de.drv.dsrv.extrastandard.namespace.components.RootElementType;
import de.drv.dsrv.extrastandard.namespace.components.SignaturesType;
import de.drv.dsrv.extrastandard.namespace.logging.LoggingType;


/**
 * 

Java class for TransportResponseType complex type. * *

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

 * <complexType name="TransportResponseType">
 *   <complexContent>
 *     <extension base="{http://www.extra-standard.de/namespace/components/1}RootElementType">
 *       <sequence>
 *         <element ref="{http://www.extra-standard.de/namespace/response/1}TransportHeader"/>
 *         <element ref="{http://www.extra-standard.de/namespace/response/1}TransportPlugIns" minOccurs="0"/>
 *         <element ref="{http://www.extra-standard.de/namespace/response/1}TransportBody"/>
 *         <element ref="{http://www.extra-standard.de/namespace/logging/1}Logging" minOccurs="0"/>
 *         <element ref="{http://www.extra-standard.de/namespace/components/1}Signatures" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TransportResponseType", propOrder = { "transportHeader", "transportPlugIns", "transportBody", "logging", "signatures" }) @XmlRootElement(name = "Transport") public class Transport extends RootElementType { @XmlElement(name = "TransportHeader", required = true) protected TransportHeader transportHeader; @XmlElement(name = "TransportPlugIns") protected AnyPlugInContainerType transportPlugIns; @XmlElement(name = "TransportBody", required = true) protected TransportBody transportBody; @XmlElement(name = "Logging", namespace = "http://www.extra-standard.de/namespace/logging/1") protected LoggingType logging; @XmlElement(name = "Signatures", namespace = "http://www.extra-standard.de/namespace/components/1") protected SignaturesType signatures; /** * Gets the value of the transportHeader property. * * @return * possible object is * {@link TransportHeader } * */ public TransportHeader getTransportHeader() { return transportHeader; } /** * Sets the value of the transportHeader property. * * @param value * allowed object is * {@link TransportHeader } * */ public void setTransportHeader(TransportHeader value) { this.transportHeader = value; } /** * Gets the value of the transportPlugIns property. * * @return * possible object is * {@link AnyPlugInContainerType } * */ public AnyPlugInContainerType getTransportPlugIns() { return transportPlugIns; } /** * Sets the value of the transportPlugIns property. * * @param value * allowed object is * {@link AnyPlugInContainerType } * */ public void setTransportPlugIns(AnyPlugInContainerType value) { this.transportPlugIns = value; } /** * Gets the value of the transportBody property. * * @return * possible object is * {@link TransportBody } * */ public TransportBody getTransportBody() { return transportBody; } /** * Sets the value of the transportBody property. * * @param value * allowed object is * {@link TransportBody } * */ public void setTransportBody(TransportBody value) { this.transportBody = value; } /** * Gets the value of the logging property. * * @return * possible object is * {@link LoggingType } * */ public LoggingType getLogging() { return logging; } /** * Sets the value of the logging property. * * @param value * allowed object is * {@link LoggingType } * */ public void setLogging(LoggingType value) { this.logging = value; } /** * Gets the value of the signatures property. * * @return * possible object is * {@link SignaturesType } * */ public SignaturesType getSignatures() { return signatures; } /** * Sets the value of the signatures property. * * @param value * allowed object is * {@link SignaturesType } * */ public void setSignatures(SignaturesType value) { this.signatures = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy