net.datastream.schemas.mp_results.mp7163_001.ResultData Maven / Gradle / Ivy
package net.datastream.schemas.mp_results.mp7163_001;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.openapplications.oagis_segments.DATETIME;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_fields}FROMDATE"/>
* <element ref="{http://schemas.datastream.net/MP_fields}TODATE"/>
* <element ref="{http://schemas.datastream.net/MP_fields}FREEZE"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"fromdate",
"todate",
"freeze"
})
@XmlRootElement(name = "ResultData")
public class ResultData {
@XmlElement(name = "FROMDATE", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected DATETIME fromdate;
@XmlElement(name = "TODATE", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected DATETIME todate;
@XmlElement(name = "FREEZE", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected String freeze;
/**
* Gets the value of the fromdate property.
*
* @return
* possible object is
* {@link DATETIME }
*
*/
public DATETIME getFROMDATE() {
return fromdate;
}
/**
* Sets the value of the fromdate property.
*
* @param value
* allowed object is
* {@link DATETIME }
*
*/
public void setFROMDATE(DATETIME value) {
this.fromdate = value;
}
/**
* Gets the value of the todate property.
*
* @return
* possible object is
* {@link DATETIME }
*
*/
public DATETIME getTODATE() {
return todate;
}
/**
* Sets the value of the todate property.
*
* @param value
* allowed object is
* {@link DATETIME }
*
*/
public void setTODATE(DATETIME value) {
this.todate = value;
}
/**
* Gets the value of the freeze property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFREEZE() {
return freeze;
}
/**
* Sets the value of the freeze property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFREEZE(String value) {
this.freeze = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy