net.datastream.schemas.mp_entities.equipmentgeneration_001.CommissioningWorkOrderDetails Maven / Gradle / Ivy
package net.datastream.schemas.mp_entities.equipmentgeneration_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.COSTCODEID_Type;
import net.datastream.schemas.mp_fields.DEPARTMENTID_Type;
import net.datastream.schemas.mp_fields.LOCATIONID_Type;
import net.datastream.schemas.mp_fields.PERSONID_Type;
import net.datastream.schemas.mp_fields.STATUS_Type;
import net.datastream.schemas.mp_fields.WOID_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}COMMISSIONINGWORKORDERID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}CREATECOMMISSIONINGWO" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}STATUS" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}DEPARTMENTID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}LOCATIONID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}COSTCODEID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ASSIGNEDTO" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}SCHEDGROUP" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"commissioningworkorderid",
"createcommissioningwo",
"status",
"departmentid",
"locationid",
"costcodeid",
"assignedto",
"schedgroup"
})
@XmlRootElement(name = "CommissioningWorkOrderDetails")
public class CommissioningWorkOrderDetails {
@XmlElement(name = "COMMISSIONINGWORKORDERID", namespace = "http://schemas.datastream.net/MP_fields")
protected WOID_Type commissioningworkorderid;
@XmlElement(name = "CREATECOMMISSIONINGWO", namespace = "http://schemas.datastream.net/MP_fields", defaultValue = "true")
protected String createcommissioningwo;
@XmlElement(name = "STATUS", namespace = "http://schemas.datastream.net/MP_fields")
protected STATUS_Type status;
@XmlElement(name = "DEPARTMENTID", namespace = "http://schemas.datastream.net/MP_fields")
protected DEPARTMENTID_Type departmentid;
@XmlElement(name = "LOCATIONID", namespace = "http://schemas.datastream.net/MP_fields")
protected LOCATIONID_Type locationid;
@XmlElement(name = "COSTCODEID", namespace = "http://schemas.datastream.net/MP_fields")
protected COSTCODEID_Type costcodeid;
@XmlElement(name = "ASSIGNEDTO", namespace = "http://schemas.datastream.net/MP_fields")
protected PERSONID_Type assignedto;
@XmlElement(name = "SCHEDGROUP", namespace = "http://schemas.datastream.net/MP_fields")
protected String schedgroup;
/**
* Gets the value of the commissioningworkorderid property.
*
* @return
* possible object is
* {@link WOID_Type }
*
*/
public WOID_Type getCOMMISSIONINGWORKORDERID() {
return commissioningworkorderid;
}
/**
* Sets the value of the commissioningworkorderid property.
*
* @param value
* allowed object is
* {@link WOID_Type }
*
*/
public void setCOMMISSIONINGWORKORDERID(WOID_Type value) {
this.commissioningworkorderid = value;
}
/**
* Gets the value of the createcommissioningwo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCREATECOMMISSIONINGWO() {
return createcommissioningwo;
}
/**
* Sets the value of the createcommissioningwo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCREATECOMMISSIONINGWO(String value) {
this.createcommissioningwo = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link STATUS_Type }
*
*/
public STATUS_Type getSTATUS() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link STATUS_Type }
*
*/
public void setSTATUS(STATUS_Type value) {
this.status = value;
}
/**
* Gets the value of the departmentid property.
*
* @return
* possible object is
* {@link DEPARTMENTID_Type }
*
*/
public DEPARTMENTID_Type getDEPARTMENTID() {
return departmentid;
}
/**
* Sets the value of the departmentid property.
*
* @param value
* allowed object is
* {@link DEPARTMENTID_Type }
*
*/
public void setDEPARTMENTID(DEPARTMENTID_Type value) {
this.departmentid = value;
}
/**
* Gets the value of the locationid property.
*
* @return
* possible object is
* {@link LOCATIONID_Type }
*
*/
public LOCATIONID_Type getLOCATIONID() {
return locationid;
}
/**
* Sets the value of the locationid property.
*
* @param value
* allowed object is
* {@link LOCATIONID_Type }
*
*/
public void setLOCATIONID(LOCATIONID_Type value) {
this.locationid = value;
}
/**
* Gets the value of the costcodeid property.
*
* @return
* possible object is
* {@link COSTCODEID_Type }
*
*/
public COSTCODEID_Type getCOSTCODEID() {
return costcodeid;
}
/**
* Sets the value of the costcodeid property.
*
* @param value
* allowed object is
* {@link COSTCODEID_Type }
*
*/
public void setCOSTCODEID(COSTCODEID_Type value) {
this.costcodeid = value;
}
/**
* Gets the value of the assignedto property.
*
* @return
* possible object is
* {@link PERSONID_Type }
*
*/
public PERSONID_Type getASSIGNEDTO() {
return assignedto;
}
/**
* Sets the value of the assignedto property.
*
* @param value
* allowed object is
* {@link PERSONID_Type }
*
*/
public void setASSIGNEDTO(PERSONID_Type value) {
this.assignedto = value;
}
/**
* Gets the value of the schedgroup property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCHEDGROUP() {
return schedgroup;
}
/**
* Sets the value of the schedgroup property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCHEDGROUP(String value) {
this.schedgroup = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy