net.datastream.schemas.mp_fields.GRIDPARAMETERVALUE 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 name="DATEFIELD" type="{http://www.openapplications.org/oagis_segments}DATETIME" minOccurs="0"/>
* <element name="NUMBERFIELD" type="{http://www.openapplications.org/oagis_segments}QUANTITY" minOccurs="0"/>
* <element name="TEXTFIELD" type="{http://schemas.datastream.net/MP_fields}CODE256_Type" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"datefield",
"numberfield",
"textfield"
})
@XmlRootElement(name = "GRIDPARAMETERVALUE")
public class GRIDPARAMETERVALUE {
@XmlElement(name = "DATEFIELD")
protected DATETIME datefield;
@XmlElement(name = "NUMBERFIELD")
protected QUANTITY numberfield;
@XmlElement(name = "TEXTFIELD")
protected String textfield;
/**
* Obtient la valeur de la propriété datefield.
*
* @return
* possible object is
* {@link DATETIME }
*
*/
public DATETIME getDATEFIELD() {
return datefield;
}
/**
* Définit la valeur de la propriété datefield.
*
* @param value
* allowed object is
* {@link DATETIME }
*
*/
public void setDATEFIELD(DATETIME value) {
this.datefield = value;
}
/**
* Obtient la valeur de la propriété numberfield.
*
* @return
* possible object is
* {@link QUANTITY }
*
*/
public QUANTITY getNUMBERFIELD() {
return numberfield;
}
/**
* Définit la valeur de la propriété numberfield.
*
* @param value
* allowed object is
* {@link QUANTITY }
*
*/
public void setNUMBERFIELD(QUANTITY value) {
this.numberfield = value;
}
/**
* Obtient la valeur de la propriété textfield.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTEXTFIELD() {
return textfield;
}
/**
* Définit la valeur de la propriété textfield.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTEXTFIELD(String value) {
this.textfield = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy