eu.europa.esig.dss.jaxb.diagnostic.XmlStructuralValidation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-diagnostic-jaxb Show documentation
Show all versions of dss-diagnostic-jaxb Show documentation
Generated source from XSD for Diagnostic Data.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.05.29 at 09:26:39 AM CEST
//
package eu.europa.esig.dss.jaxb.diagnostic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for StructuralValidation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StructuralValidation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Valid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StructuralValidation", propOrder = {
"valid",
"message"
})
public class XmlStructuralValidation {
@XmlElement(name = "Valid")
protected Boolean valid;
@XmlElement(name = "Message")
protected String message;
/**
* Gets the value of the valid property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isValid() {
return valid;
}
/**
* Sets the value of the valid property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setValid(Boolean value) {
this.valid = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
}