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

cz.abclinuxu.datoveschranky.ws.dm.TMessDownOutput Maven / Gradle / Ivy

The newest version!

package cz.abclinuxu.datoveschranky.ws.dm;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for tMessDownOutput complex type. * *

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

 * <complexType name="tMessDownOutput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dmReturnedMessage" type="{http://isds.czechpoint.cz/v20}tReturnedMessage" minOccurs="0"/>
 *         <element name="dmStatus" type="{http://isds.czechpoint.cz/v20}tStatus" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tMessDownOutput", propOrder = { "dmReturnedMessage", "dmStatus" }) public class TMessDownOutput { @XmlElementRef(name = "dmReturnedMessage", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false) protected JAXBElement dmReturnedMessage; protected TStatus dmStatus; /** * Gets the value of the dmReturnedMessage property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link TReturnedMessage }{@code >} * */ public JAXBElement getDmReturnedMessage() { return dmReturnedMessage; } /** * Sets the value of the dmReturnedMessage property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link TReturnedMessage }{@code >} * */ public void setDmReturnedMessage(JAXBElement value) { this.dmReturnedMessage = value; } /** * Gets the value of the dmStatus property. * * @return * possible object is * {@link TStatus } * */ public TStatus getDmStatus() { return dmStatus; } /** * Sets the value of the dmStatus property. * * @param value * allowed object is * {@link TStatus } * */ public void setDmStatus(TStatus value) { this.dmStatus = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy