net.datastream.schemas.mp_results.mp0601_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.mp0601_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.usersetup_001.UserSetup;
import net.datastream.schemas.mp_fields.CURRENCYID_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/UserSetup_001}UserSetup"/>
* <element ref="{http://schemas.datastream.net/MP_fields}CURRENCYID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}GROUPREQUESTORFLAG" minOccurs="0"/>
* </sequence>
* <attribute name="multiorg" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" default="false" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"userSetup",
"currencyid",
"grouprequestorflag"
})
@XmlRootElement(name = "ResultData")
public class ResultData {
@XmlElement(name = "UserSetup", namespace = "http://schemas.datastream.net/MP_entities/UserSetup_001", required = true)
protected UserSetup userSetup;
@XmlElement(name = "CURRENCYID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected CURRENCYID_Type currencyid;
@XmlElement(name = "GROUPREQUESTORFLAG", namespace = "http://schemas.datastream.net/MP_fields")
protected String grouprequestorflag;
@XmlAttribute(name = "multiorg")
protected String multiorg;
/**
* Obtient la valeur de la propriété userSetup.
*
* @return
* possible object is
* {@link UserSetup }
*
*/
public UserSetup getUserSetup() {
return userSetup;
}
/**
* Définit la valeur de la propriété userSetup.
*
* @param value
* allowed object is
* {@link UserSetup }
*
*/
public void setUserSetup(UserSetup value) {
this.userSetup = value;
}
/**
* Obtient la valeur de la propriété currencyid.
*
* @return
* possible object is
* {@link CURRENCYID_Type }
*
*/
public CURRENCYID_Type getCURRENCYID() {
return currencyid;
}
/**
* Définit la valeur de la propriété currencyid.
*
* @param value
* allowed object is
* {@link CURRENCYID_Type }
*
*/
public void setCURRENCYID(CURRENCYID_Type value) {
this.currencyid = value;
}
/**
* Obtient la valeur de la propriété grouprequestorflag.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGROUPREQUESTORFLAG() {
return grouprequestorflag;
}
/**
* Définit la valeur de la propriété grouprequestorflag.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGROUPREQUESTORFLAG(String value) {
this.grouprequestorflag = value;
}
/**
* Obtient la valeur de la propriété multiorg.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMultiorg() {
if (multiorg == null) {
return "false";
} else {
return multiorg;
}
}
/**
* Définit la valeur de la propriété multiorg.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMultiorg(String value) {
this.multiorg = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy