de.drv.dsrv.extrastandard.namespace.response.MessageHeader 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.ElementWithOptionalVersionType;
import de.drv.dsrv.extrastandard.namespace.components.ReceiverType;
import de.drv.dsrv.extrastandard.namespace.components.RequestDetailsType;
import de.drv.dsrv.extrastandard.namespace.components.ResponseDetailsType;
import de.drv.dsrv.extrastandard.namespace.components.SenderType;
/**
* Java class for MessageResponseHeaderType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MessageResponseHeaderType">
* <complexContent>
* <extension base="{http://www.extra-standard.de/namespace/components/1}ElementWithOptionalVersionType">
* <sequence>
* <element ref="{http://www.extra-standard.de/namespace/components/1}TestIndicator" minOccurs="0"/>
* <element ref="{http://www.extra-standard.de/namespace/components/1}Sender"/>
* <element ref="{http://www.extra-standard.de/namespace/components/1}Receiver"/>
* <element ref="{http://www.extra-standard.de/namespace/components/1}RequestDetails"/>
* <element ref="{http://www.extra-standard.de/namespace/components/1}ResponseDetails"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MessageResponseHeaderType", propOrder = {
"testIndicator",
"sender",
"receiver",
"requestDetails",
"responseDetails"
})
public class MessageHeader
extends ElementWithOptionalVersionType
{
@XmlElement(name = "TestIndicator", namespace = "http://www.extra-standard.de/namespace/components/1")
protected String testIndicator;
@XmlElement(name = "Sender", namespace = "http://www.extra-standard.de/namespace/components/1", required = true)
protected SenderType sender;
@XmlElement(name = "Receiver", namespace = "http://www.extra-standard.de/namespace/components/1", required = true)
protected ReceiverType receiver;
@XmlElement(name = "RequestDetails", namespace = "http://www.extra-standard.de/namespace/components/1", required = true)
protected RequestDetailsType requestDetails;
@XmlElement(name = "ResponseDetails", namespace = "http://www.extra-standard.de/namespace/components/1", required = true)
protected ResponseDetailsType responseDetails;
/**
* Gets the value of the testIndicator property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTestIndicator() {
return testIndicator;
}
/**
* Sets the value of the testIndicator property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTestIndicator(String value) {
this.testIndicator = value;
}
/**
* Gets the value of the sender property.
*
* @return
* possible object is
* {@link SenderType }
*
*/
public SenderType getSender() {
return sender;
}
/**
* Sets the value of the sender property.
*
* @param value
* allowed object is
* {@link SenderType }
*
*/
public void setSender(SenderType value) {
this.sender = value;
}
/**
* Gets the value of the receiver property.
*
* @return
* possible object is
* {@link ReceiverType }
*
*/
public ReceiverType getReceiver() {
return receiver;
}
/**
* Sets the value of the receiver property.
*
* @param value
* allowed object is
* {@link ReceiverType }
*
*/
public void setReceiver(ReceiverType value) {
this.receiver = value;
}
/**
* Gets the value of the requestDetails property.
*
* @return
* possible object is
* {@link RequestDetailsType }
*
*/
public RequestDetailsType getRequestDetails() {
return requestDetails;
}
/**
* Sets the value of the requestDetails property.
*
* @param value
* allowed object is
* {@link RequestDetailsType }
*
*/
public void setRequestDetails(RequestDetailsType value) {
this.requestDetails = value;
}
/**
* Gets the value of the responseDetails property.
*
* @return
* possible object is
* {@link ResponseDetailsType }
*
*/
public ResponseDetailsType getResponseDetails() {
return responseDetails;
}
/**
* Sets the value of the responseDetails property.
*
* @param value
* allowed object is
* {@link ResponseDetailsType }
*
*/
public void setResponseDetails(ResponseDetailsType value) {
this.responseDetails = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy