
net.datastream.schemas.mp_results.mp0012_001.ResultData Maven / Gradle / Ivy
package net.datastream.schemas.mp_results.mp0012_001;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import net.datastream.schemas.mp_entities.workorder_001.WorkOrder;
import net.datastream.schemas.mp_fields.CLASSID_Type;
/**
* Classe Java pour anonymous complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_entities/WorkOrder_001}WorkOrder"/>
* <element ref="{http://schemas.datastream.net/MP_fields}EQUIPMENTCLASSID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}SDMFLAG" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_results/MP0012_001}EQUIPMENTINFO" minOccurs="0"/>
* </sequence>
* <attribute name="has_department_security" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"workOrder",
"equipmentclassid",
"sdmflag",
"equipmentinfo"
})
@XmlRootElement(name = "ResultData")
public class ResultData {
@XmlElement(name = "WorkOrder", namespace = "http://schemas.datastream.net/MP_entities/WorkOrder_001", required = true)
protected WorkOrder workOrder;
@XmlElement(name = "EQUIPMENTCLASSID", namespace = "http://schemas.datastream.net/MP_fields")
protected CLASSID_Type equipmentclassid;
@XmlElement(name = "SDMFLAG", namespace = "http://schemas.datastream.net/MP_fields")
protected String sdmflag;
@XmlElement(name = "EQUIPMENTINFO")
protected EQUIPMENTINFO equipmentinfo;
@XmlAttribute(name = "has_department_security")
protected String has_Department_Security;
/**
* Obtient la valeur de la propriété workOrder.
*
* @return
* possible object is
* {@link WorkOrder }
*
*/
public WorkOrder getWorkOrder() {
return workOrder;
}
/**
* Définit la valeur de la propriété workOrder.
*
* @param value
* allowed object is
* {@link WorkOrder }
*
*/
public void setWorkOrder(WorkOrder value) {
this.workOrder = value;
}
/**
* Obtient la valeur de la propriété equipmentclassid.
*
* @return
* possible object is
* {@link CLASSID_Type }
*
*/
public CLASSID_Type getEQUIPMENTCLASSID() {
return equipmentclassid;
}
/**
* Définit la valeur de la propriété equipmentclassid.
*
* @param value
* allowed object is
* {@link CLASSID_Type }
*
*/
public void setEQUIPMENTCLASSID(CLASSID_Type value) {
this.equipmentclassid = value;
}
/**
* Obtient la valeur de la propriété sdmflag.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSDMFLAG() {
return sdmflag;
}
/**
* Définit la valeur de la propriété sdmflag.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSDMFLAG(String value) {
this.sdmflag = value;
}
/**
* Obtient la valeur de la propriété equipmentinfo.
*
* @return
* possible object is
* {@link EQUIPMENTINFO }
*
*/
public EQUIPMENTINFO getEQUIPMENTINFO() {
return equipmentinfo;
}
/**
* Définit la valeur de la propriété equipmentinfo.
*
* @param value
* allowed object is
* {@link EQUIPMENTINFO }
*
*/
public void setEQUIPMENTINFO(EQUIPMENTINFO value) {
this.equipmentinfo = value;
}
/**
* Obtient la valeur de la propriété has_Department_Security.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHas_Department_Security() {
return has_Department_Security;
}
/**
* Définit la valeur de la propriété has_Department_Security.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHas_Department_Security(String value) {
this.has_Department_Security = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy