
cz.abclinuxu.datoveschranky.ws.dm.TDeliveryMessageOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isds-web-services Show documentation
Show all versions of isds-web-services Show documentation
Entity classes generated from WSDL.
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 tDeliveryMessageOutput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tDeliveryMessageOutput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dmDelivery" type="{http://isds.czechpoint.cz/v20}tDelivery" minOccurs="0"/>
* <element name="dmStatus" type="{http://isds.czechpoint.cz/v20}tStatus" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tDeliveryMessageOutput", propOrder = {
"dmDelivery",
"dmStatus"
})
public class TDeliveryMessageOutput {
@XmlElementRef(name = "dmDelivery", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false)
protected JAXBElement dmDelivery;
protected TStatus dmStatus;
/**
* Gets the value of the dmDelivery property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link TDelivery }{@code >}
*
*/
public JAXBElement getDmDelivery() {
return dmDelivery;
}
/**
* Sets the value of the dmDelivery property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link TDelivery }{@code >}
*
*/
public void setDmDelivery(JAXBElement value) {
this.dmDelivery = 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