
cz.abclinuxu.datoveschranky.ws.dm.TAuthenticateMessageInput 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.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for tAuthenticateMessageInput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tAuthenticateMessageInput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dmMessage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tAuthenticateMessageInput", propOrder = {
"dmMessage"
})
public class TAuthenticateMessageInput {
@XmlElement(required = true)
protected byte[] dmMessage;
/**
* Gets the value of the dmMessage property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getDmMessage() {
return dmMessage;
}
/**
* Sets the value of the dmMessage property.
*
* @param value
* allowed object is
* byte[]
*/
public void setDmMessage(byte[] value) {
this.dmMessage = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy