net.datastream.schemas.mp_fields.MESSAGE 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 name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="MSGTEXT" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"type",
"msgtext"
})
@XmlRootElement(name = "MESSAGE")
public class MESSAGE {
@XmlElement(required = true)
protected String type;
@XmlElement(name = "MSGTEXT", required = true)
protected String msgtext;
/**
* Obtient la valeur de la propriété type.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Définit la valeur de la propriété type.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Obtient la valeur de la propriété msgtext.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMSGTEXT() {
return msgtext;
}
/**
* Définit la valeur de la propriété msgtext.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMSGTEXT(String value) {
this.msgtext = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy