net.datastream.schemas.mp_fields.ForSystemInterfaceOnly 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_fields;
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 org.openapplications.oagis_segments.DATETIME;
import org.openapplications.oagis_segments.QUANTITY;
/**
* 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}INTERFACE" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}SOURCECODE" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}SOURCESYSTEM" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ACCOUNTDETAIL" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"_interface",
"sourcecode",
"sourcesystem",
"accountdetail"
})
@XmlRootElement(name = "ForSystemInterfaceOnly")
public class ForSystemInterfaceOnly {
@XmlElement(name = "INTERFACE")
protected DATETIME _interface;
@XmlElement(name = "SOURCECODE")
protected String sourcecode;
@XmlElement(name = "SOURCESYSTEM")
protected String sourcesystem;
@XmlElement(name = "ACCOUNTDETAIL")
protected QUANTITY accountdetail;
/**
* Obtient la valeur de la propriété interface.
*
* @return
* possible object is
* {@link DATETIME }
*
*/
public DATETIME getINTERFACE() {
return _interface;
}
/**
* Définit la valeur de la propriété interface.
*
* @param value
* allowed object is
* {@link DATETIME }
*
*/
public void setINTERFACE(DATETIME value) {
this._interface = value;
}
/**
* Obtient la valeur de la propriété sourcecode.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSOURCECODE() {
return sourcecode;
}
/**
* Définit la valeur de la propriété sourcecode.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSOURCECODE(String value) {
this.sourcecode = value;
}
/**
* Obtient la valeur de la propriété sourcesystem.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSOURCESYSTEM() {
return sourcesystem;
}
/**
* Définit la valeur de la propriété sourcesystem.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSOURCESYSTEM(String value) {
this.sourcesystem = value;
}
/**
* Obtient la valeur de la propriété accountdetail.
*
* @return
* possible object is
* {@link QUANTITY }
*
*/
public QUANTITY getACCOUNTDETAIL() {
return accountdetail;
}
/**
* Définit la valeur de la propriété accountdetail.
*
* @param value
* allowed object is
* {@link QUANTITY }
*
*/
public void setACCOUNTDETAIL(QUANTITY value) {
this.accountdetail = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy