de.drv.dsrv.extrastandard.namespace.messages.Checkpoint Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.02.27 at 11:29:43 PM CET
//
package de.drv.dsrv.extrastandard.namespace.messages;
import java.util.Calendar;
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.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3._2001.xmlschema.Adapter1;
/**
* Java class for CheckpointType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CheckpointType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Layer" type="{http://www.extra-standard.de/namespace/message/1}ExtraLayerNamesType"/>
* <element name="Status" type="{http://www.extra-standard.de/namespace/message/1}StatusNamesType"/>
* <element name="Timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="Report" type="{http://www.extra-standard.de/namespace/message/1}ReportType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CheckpointType", propOrder = {
"layer",
"status",
"timestamp",
"report"
})
public class Checkpoint {
@XmlElement(name = "Layer", required = true)
protected String layer;
@XmlElement(name = "Status", required = true)
protected String status;
@XmlElement(name = "Timestamp", required = true, type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar timestamp;
@XmlElement(name = "Report")
protected Report report;
/**
* Gets the value of the layer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLayer() {
return layer;
}
/**
* Sets the value of the layer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLayer(String value) {
this.layer = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatus(String value) {
this.status = value;
}
/**
* Gets the value of the timestamp property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getTimestamp() {
return timestamp;
}
/**
* Sets the value of the timestamp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTimestamp(Calendar value) {
this.timestamp = value;
}
/**
* Gets the value of the report property.
*
* @return
* possible object is
* {@link Report }
*
*/
public Report getReport() {
return report;
}
/**
* Sets the value of the report property.
*
* @param value
* allowed object is
* {@link Report }
*
*/
public void setReport(Report value) {
this.report = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy