
net.datastream.schemas.mp_results.mp8000_001.ResultData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eam-wshub-proxyclient Show documentation
Show all versions of eam-wshub-proxyclient Show documentation
JAX-WS aisws aisws generated from Infor EAM Web Services Toolkit WSDLs.
package net.datastream.schemas.mp_results.mp8000_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.ACTIVITYID;
import net.datastream.schemas.mp_fields.ENTITYKEY_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_fields}ACTIVITYID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ENTITYKEY" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}WORKORDERCOUNT" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"activityid",
"entitykey",
"workordercount"
})
@XmlRootElement(name = "ResultData")
public class ResultData {
@XmlElement(name = "ACTIVITYID", namespace = "http://schemas.datastream.net/MP_fields")
protected ACTIVITYID activityid;
@XmlElement(name = "ENTITYKEY", namespace = "http://schemas.datastream.net/MP_fields")
protected ENTITYKEY_Type entitykey;
@XmlElement(name = "WORKORDERCOUNT", namespace = "http://schemas.datastream.net/MP_fields")
protected Long workordercount;
/**
* Obtient la valeur de la propriété activityid.
*
* @return
* possible object is
* {@link ACTIVITYID }
*
*/
public ACTIVITYID getACTIVITYID() {
return activityid;
}
/**
* Définit la valeur de la propriété activityid.
*
* @param value
* allowed object is
* {@link ACTIVITYID }
*
*/
public void setACTIVITYID(ACTIVITYID value) {
this.activityid = value;
}
/**
* Obtient la valeur de la propriété entitykey.
*
* @return
* possible object is
* {@link ENTITYKEY_Type }
*
*/
public ENTITYKEY_Type getENTITYKEY() {
return entitykey;
}
/**
* Définit la valeur de la propriété entitykey.
*
* @param value
* allowed object is
* {@link ENTITYKEY_Type }
*
*/
public void setENTITYKEY(ENTITYKEY_Type value) {
this.entitykey = value;
}
/**
* Obtient la valeur de la propriété workordercount.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getWORKORDERCOUNT() {
return workordercount;
}
/**
* Définit la valeur de la propriété workordercount.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setWORKORDERCOUNT(Long value) {
this.workordercount = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy