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

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

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 tEvent complex type. * *

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

 * <complexType name="tEvent">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{http://isds.czechpoint.cz/v20}dmEvent"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tEvent", propOrder = { "dmEventTime", "dmEventDescr" }) public class TEvent { @XmlElement(required = true, nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dmEventTime; @XmlElement(required = true, nillable = true) protected String dmEventDescr; /** * 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 dmEventDescr property. * * @return * possible object is * {@link String } * */ public String getDmEventDescr() { return dmEventDescr; } /** * Sets the value of the dmEventDescr property. * * @param value * allowed object is * {@link String } * */ public void setDmEventDescr(String value) { this.dmEventDescr = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy