net.datastream.schemas.mp_fields.FREIGHTTERM Maven / Gradle / Ivy
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;
/**
* 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}ORDERTERMID"/>
* </sequence>
* <attribute name="ordertermtype" type="{http://schemas.datastream.net/MP_fields}ORDERTERMTYPE_Type" fixed="FRTR" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"ordertermid"
})
@XmlRootElement(name = "FREIGHTTERM")
public class FREIGHTTERM {
@XmlElement(name = "ORDERTERMID", required = true)
protected ORDERTERMID_Type ordertermid;
@XmlAttribute(name = "ordertermtype")
protected ORDERTERMTYPE_Type ordertermtype;
/**
* Obtient la valeur de la propriété ordertermid.
*
* @return
* possible object is
* {@link ORDERTERMID_Type }
*
*/
public ORDERTERMID_Type getORDERTERMID() {
return ordertermid;
}
/**
* Définit la valeur de la propriété ordertermid.
*
* @param value
* allowed object is
* {@link ORDERTERMID_Type }
*
*/
public void setORDERTERMID(ORDERTERMID_Type value) {
this.ordertermid = value;
}
/**
* Obtient la valeur de la propriété ordertermtype.
*
* @return
* possible object is
* {@link ORDERTERMTYPE_Type }
*
*/
public ORDERTERMTYPE_Type getOrdertermtype() {
if (ordertermtype == null) {
return ORDERTERMTYPE_Type.FRTR;
} else {
return ordertermtype;
}
}
/**
* Définit la valeur de la propriété ordertermtype.
*
* @param value
* allowed object is
* {@link ORDERTERMTYPE_Type }
*
*/
public void setOrdertermtype(ORDERTERMTYPE_Type value) {
this.ordertermtype = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy