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

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


/**
 * 

Java class for MessageResponseType complex type. * *

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

 * <complexType name="MessageResponseType">
 *   <complexContent>
 *     <extension base="{http://www.extra-standard.de/namespace/components/1}ElementWithOptionalVersionType">
 *       <sequence>
 *         <element ref="{http://www.extra-standard.de/namespace/response/1}MessageHeader"/>
 *         <element ref="{http://www.extra-standard.de/namespace/response/1}MessagePlugIns" minOccurs="0"/>
 *         <element ref="{http://www.extra-standard.de/namespace/response/1}MessageBody"/>
 *         <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 = "MessageResponseType", propOrder = { "messageHeader", "messagePlugIns", "messageBody", "logging", "signatures" }) public class Message extends ElementWithOptionalVersionType { @XmlElement(name = "MessageHeader", required = true) protected MessageHeader messageHeader; @XmlElement(name = "MessagePlugIns") protected AnyPlugInContainerType messagePlugIns; @XmlElement(name = "MessageBody", required = true) protected MessageBody messageBody; @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 messageHeader property. * * @return * possible object is * {@link MessageHeader } * */ public MessageHeader getMessageHeader() { return messageHeader; } /** * Sets the value of the messageHeader property. * * @param value * allowed object is * {@link MessageHeader } * */ public void setMessageHeader(MessageHeader value) { this.messageHeader = value; } /** * Gets the value of the messagePlugIns property. * * @return * possible object is * {@link AnyPlugInContainerType } * */ public AnyPlugInContainerType getMessagePlugIns() { return messagePlugIns; } /** * Sets the value of the messagePlugIns property. * * @param value * allowed object is * {@link AnyPlugInContainerType } * */ public void setMessagePlugIns(AnyPlugInContainerType value) { this.messagePlugIns = value; } /** * Gets the value of the messageBody property. * * @return * possible object is * {@link MessageBody } * */ public MessageBody getMessageBody() { return messageBody; } /** * Sets the value of the messageBody property. * * @param value * allowed object is * {@link MessageBody } * */ public void setMessageBody(MessageBody value) { this.messageBody = 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