eu.europa.esig.dss.diagnostic.jaxb.XmlSignerDocumentRepresentations 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.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.10.20 at 09:59:47 AM EEST
//
package eu.europa.esig.dss.diagnostic.jaxb;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="HashOnly" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="DocHashOnly" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public class XmlSignerDocumentRepresentations implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlAttribute(name = "HashOnly", required = true)
protected boolean hashOnly;
@XmlAttribute(name = "DocHashOnly", required = true)
protected boolean docHashOnly;
/**
* Gets the value of the hashOnly property.
*
*/
public boolean isHashOnly() {
return hashOnly;
}
/**
* Sets the value of the hashOnly property.
*
*/
public void setHashOnly(boolean value) {
this.hashOnly = value;
}
/**
* Gets the value of the docHashOnly property.
*
*/
public boolean isDocHashOnly() {
return docHashOnly;
}
/**
* Sets the value of the docHashOnly property.
*
*/
public void setDocHashOnly(boolean value) {
this.docHashOnly = value;
}
}