
cz.abclinuxu.datoveschranky.ws.dm.TMessEnvelDownOutput 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.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for tMessEnvelDownOutput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tMessEnvelDownOutput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dmReturnedMessageEnvelope" type="{http://isds.czechpoint.cz/v20}tReturnedMessageEnvelope" minOccurs="0"/>
* <element name="dmStatus" type="{http://isds.czechpoint.cz/v20}tStatus"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tMessEnvelDownOutput", propOrder = {
"dmReturnedMessageEnvelope",
"dmStatus"
})
public class TMessEnvelDownOutput {
@XmlElementRef(name = "dmReturnedMessageEnvelope", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false)
protected JAXBElement dmReturnedMessageEnvelope;
@XmlElement(required = true)
protected TStatus dmStatus;
/**
* Gets the value of the dmReturnedMessageEnvelope property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link TReturnedMessageEnvelope }{@code >}
*
*/
public JAXBElement getDmReturnedMessageEnvelope() {
return dmReturnedMessageEnvelope;
}
/**
* Sets the value of the dmReturnedMessageEnvelope property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link TReturnedMessageEnvelope }{@code >}
*
*/
public void setDmReturnedMessageEnvelope(JAXBElement value) {
this.dmReturnedMessageEnvelope = 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