net.datastream.schemas.mp_fields.PAYMENTTERM 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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* 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}ORDERTERMID"/>
* </sequence>
* <attribute name="ordertermtype" type="{http://schemas.datastream.net/MP_fields}ORDERTERMTYPE_Type" fixed="PAY" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"ordertermid"
})
@XmlRootElement(name = "PAYMENTTERM")
public class PAYMENTTERM {
@XmlElement(name = "ORDERTERMID", required = true)
protected ORDERTERMID_Type ordertermid;
@XmlAttribute(name = "ordertermtype")
protected ORDERTERMTYPE_Type ordertermtype;
/**
* Gets the value of the ordertermid property.
*
* @return
* possible object is
* {@link ORDERTERMID_Type }
*
*/
public ORDERTERMID_Type getORDERTERMID() {
return ordertermid;
}
/**
* Sets the value of the ordertermid property.
*
* @param value
* allowed object is
* {@link ORDERTERMID_Type }
*
*/
public void setORDERTERMID(ORDERTERMID_Type value) {
this.ordertermid = value;
}
/**
* Gets the value of the ordertermtype property.
*
* @return
* possible object is
* {@link ORDERTERMTYPE_Type }
*
*/
public ORDERTERMTYPE_Type getOrdertermtype() {
if (ordertermtype == null) {
return ORDERTERMTYPE_Type.PAY;
} else {
return ordertermtype;
}
}
/**
* Sets the value of the ordertermtype property.
*
* @param value
* allowed object is
* {@link ORDERTERMTYPE_Type }
*
*/
public void setOrdertermtype(ORDERTERMTYPE_Type value) {
this.ordertermtype = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy