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

de.drv.dsrv.extrastandard.namespace.request.PackageHeader 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.request;

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.SenderType;


/**
 * 

Java class for PackageRequestHeaderType complex type. * *

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

 * <complexType name="PackageRequestHeaderType">
 *   <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"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PackageRequestHeaderType", propOrder = { "testIndicator", "sender", "receiver", "requestDetails" }) public class PackageHeader 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; /** * 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy