
cz.abclinuxu.datoveschranky.ws.dm.TStateChangesRecord 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for tStateChangesRecord complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tStateChangesRecord">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dmID" type="{http://isds.czechpoint.cz/v20}tIdDm"/>
* <element name="dmEventTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="dmMessageStatus" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tStateChangesRecord", propOrder = {
"dmID",
"dmEventTime",
"dmMessageStatus"
})
public class TStateChangesRecord {
@XmlElement(required = true)
protected String dmID;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dmEventTime;
protected int dmMessageStatus;
/**
* Gets the value of the dmID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDmID() {
return dmID;
}
/**
* Sets the value of the dmID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDmID(String value) {
this.dmID = value;
}
/**
* Gets the value of the dmEventTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDmEventTime() {
return dmEventTime;
}
/**
* Sets the value of the dmEventTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDmEventTime(XMLGregorianCalendar value) {
this.dmEventTime = value;
}
/**
* Gets the value of the dmMessageStatus property.
*
*/
public int getDmMessageStatus() {
return dmMessageStatus;
}
/**
* Sets the value of the dmMessageStatus property.
*
*/
public void setDmMessageStatus(int value) {
this.dmMessageStatus = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy