net.datastream.schemas.mp_fields.ERROR_INFO 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="PostUpdateAction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ErrorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"postUpdateAction",
"status",
"errorMessage"
})
@XmlRootElement(name = "ERROR_INFO")
public class ERROR_INFO {
@XmlElement(name = "PostUpdateAction")
protected String postUpdateAction;
@XmlElement(name = "Status")
protected String status;
@XmlElement(name = "ErrorMessage")
protected String errorMessage;
/**
* Obtient la valeur de la propriété postUpdateAction.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostUpdateAction() {
return postUpdateAction;
}
/**
* Définit la valeur de la propriété postUpdateAction.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostUpdateAction(String value) {
this.postUpdateAction = value;
}
/**
* Obtient la valeur de la propriété status.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatus() {
return status;
}
/**
* Définit la valeur de la propriété status.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatus(String value) {
this.status = value;
}
/**
* Obtient la valeur de la propriété errorMessage.
*
* @return
* possible object is
* {@link String }
*
*/
public String getErrorMessage() {
return errorMessage;
}
/**
* Définit la valeur de la propriété errorMessage.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setErrorMessage(String value) {
this.errorMessage = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy