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

de.drv.dsrv.extrastandard.namespace.response.MessageBody 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.DataType;
import de.drv.dsrv.extrastandard.namespace.components.ElementWithOptionalVersionType;
import de.drv.dsrv.extrastandard.namespace.plugins.TransformedDataType;
import de.drv.dsrv.extrastandard.namespace.xmlenc.EncryptedDataType;


/**
 * 

Java class for MessageResponseBodyType complex type. * *

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

 * <complexType name="MessageResponseBodyType">
 *   <complexContent>
 *     <extension base="{http://www.extra-standard.de/namespace/components/1}ElementWithOptionalVersionType">
 *       <choice minOccurs="0">
 *         <element ref="{http://www.w3.org/2001/04/xmlenc#}EncryptedData"/>
 *         <element ref="{http://www.extra-standard.de/namespace/components/1}TransformedData"/>
 *         <element ref="{http://www.extra-standard.de/namespace/components/1}Data"/>
 *       </choice>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MessageResponseBodyType", propOrder = { "encryptedData", "transformedData", "data" }) public class MessageBody extends ElementWithOptionalVersionType { @XmlElement(name = "EncryptedData", namespace = "http://www.w3.org/2001/04/xmlenc#") protected EncryptedDataType encryptedData; @XmlElement(name = "TransformedData", namespace = "http://www.extra-standard.de/namespace/components/1") protected TransformedDataType transformedData; @XmlElement(name = "Data", namespace = "http://www.extra-standard.de/namespace/components/1") protected DataType data; /** * Gets the value of the encryptedData property. * * @return * possible object is * {@link EncryptedDataType } * */ public EncryptedDataType getEncryptedData() { return encryptedData; } /** * Sets the value of the encryptedData property. * * @param value * allowed object is * {@link EncryptedDataType } * */ public void setEncryptedData(EncryptedDataType value) { this.encryptedData = value; } /** * Gets the value of the transformedData property. * * @return * possible object is * {@link TransformedDataType } * */ public TransformedDataType getTransformedData() { return transformedData; } /** * Sets the value of the transformedData property. * * @param value * allowed object is * {@link TransformedDataType } * */ public void setTransformedData(TransformedDataType value) { this.transformedData = value; } /** * Gets the value of the data property. * * @return * possible object is * {@link DataType } * */ public DataType getData() { return data; } /** * Sets the value of the data property. * * @param value * allowed object is * {@link DataType } * */ public void setData(DataType value) { this.data = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy