net.datastream.schemas.mp_results.mp0082_001.ResultData Maven / Gradle / Ivy
package net.datastream.schemas.mp_results.mp0082_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 net.datastream.schemas.mp_fields.TASKLISTID_Type;
/**
* 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}TASKLISTID"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"tasklistid"
})
@XmlRootElement(name = "ResultData")
public class ResultData {
@XmlElement(name = "TASKLISTID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected TASKLISTID_Type tasklistid;
/**
* Gets the value of the tasklistid property.
*
* @return
* possible object is
* {@link TASKLISTID_Type }
*
*/
public TASKLISTID_Type getTASKLISTID() {
return tasklistid;
}
/**
* Sets the value of the tasklistid property.
*
* @param value
* allowed object is
* {@link TASKLISTID_Type }
*
*/
public void setTASKLISTID(TASKLISTID_Type value) {
this.tasklistid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy