package eu.aniketos.ncvm.client; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for IVerificationResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="IVerificationResult"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="errorExplanation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="errorValue" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="result" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IVerificationResult", namespace = "http://ncvm.aniketos.eu", propOrder = { "errorExplanation", "errorValue", "result" }) public class IVerificationResult { @XmlElementRef(name = "errorExplanation", namespace = "http://ncvm.aniketos.eu", type = JAXBElement.class) protected JAXBElement<String> errorExplanation; protected Integer errorValue; protected Integer result; /** * Gets the value of the errorExplanation property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getErrorExplanation() { return errorExplanation; } /** * Sets the value of the errorExplanation property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setErrorExplanation(JAXBElement<String> value) { this.errorExplanation = value; } /** * Gets the value of the errorValue property. * * @return * possible object is * {@link Integer } * */ public Integer getErrorValue() { return errorValue; } /** * Sets the value of the errorValue property. * * @param value * allowed object is * {@link Integer } * */ public void setErrorValue(Integer value) { this.errorValue = value; } /** * Gets the value of the result property. * * @return * possible object is * {@link Integer } * */ public Integer getResult() { return result; } /** * Sets the value of the result property. * * @param value * allowed object is * {@link Integer } * */ public void setResult(Integer value) { this.result = value; } }