
net.datastream.schemas.mp_fields.REPORTOPTIONID 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.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}FUNCTIONCODE"/>
* <element ref="{http://schemas.datastream.net/MP_fields}REPORTPARAM"/>
* <element ref="{http://schemas.datastream.net/MP_fields}SEQUENCENUMBER"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"functioncode",
"reportparam",
"sequencenumber"
})
@XmlRootElement(name = "REPORTOPTIONID")
public class REPORTOPTIONID {
@XmlElement(name = "FUNCTIONCODE", required = true)
protected String functioncode;
@XmlElement(name = "REPORTPARAM", required = true)
protected String reportparam;
@XmlElement(name = "SEQUENCENUMBER")
protected long sequencenumber;
/**
* Obtient la valeur de la propriété functioncode.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFUNCTIONCODE() {
return functioncode;
}
/**
* Définit la valeur de la propriété functioncode.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFUNCTIONCODE(String value) {
this.functioncode = value;
}
/**
* Obtient la valeur de la propriété reportparam.
*
* @return
* possible object is
* {@link String }
*
*/
public String getREPORTPARAM() {
return reportparam;
}
/**
* Définit la valeur de la propriété reportparam.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setREPORTPARAM(String value) {
this.reportparam = value;
}
/**
* Obtient la valeur de la propriété sequencenumber.
*
*/
public long getSEQUENCENUMBER() {
return sequencenumber;
}
/**
* Définit la valeur de la propriété sequencenumber.
*
*/
public void setSEQUENCENUMBER(long value) {
this.sequencenumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy