package eu.aniketos.ncvm.pvm.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 PropertyVerificationResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PropertyVerificationResult"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="verificationExplaination" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="verificationResult" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PropertyVerificationResult", namespace = "http://propertyverification.verification.components.aniketos.eu", propOrder = { "verificationExplaination", "verificationResult" }) public class PropertyVerificationResult { @XmlElementRef(name = "verificationExplaination", namespace = "http://propertyverification.verification.components.aniketos.eu", type = JAXBElement.class) protected JAXBElement<String> verificationExplaination; protected Integer verificationResult; /** * Gets the value of the verificationExplaination property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getVerificationExplaination() { return verificationExplaination; } /** * Sets the value of the verificationExplaination property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setVerificationExplaination(JAXBElement<String> value) { this.verificationExplaination = value; } /** * Gets the value of the verificationResult property. * * @return * possible object is * {@link Integer } * */ public Integer getVerificationResult() { return verificationResult; } /** * Sets the value of the verificationResult property. * * @param value * allowed object is * {@link Integer } * */ public void setVerificationResult(Integer value) { this.verificationResult = value; } }