eu.europa.esig.dss.detailedreport.jaxb.XmlValidationSignatureQualification Maven / Gradle / Ivy
Show all versions of dss-detailed-report-jaxb Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.8
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.11.03 at 04:25:51 PM CET
//
package eu.europa.esig.dss.detailedreport.jaxb;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import eu.europa.esig.dss.enumerations.SignatureQualification;
/**
* Java class for ValidationSignatureQualification complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ValidationSignatureQualification">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion">
* <sequence>
* <element name="ValidationCertificateQualification" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationCertificateQualification" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="SignatureQualification" use="required" type="{http://dss.esig.europa.eu/validation/detailed-report}SignatureQualification" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ValidationSignatureQualification", propOrder = {
"validationCertificateQualification"
})
public class XmlValidationSignatureQualification
extends XmlConstraintsConclusion
implements Serializable
{
private static final long serialVersionUID = 1L;
@XmlElement(name = "ValidationCertificateQualification")
protected List validationCertificateQualification;
@XmlAttribute(name = "SignatureQualification", required = true)
@XmlJavaTypeAdapter(Adapter5 .class)
protected SignatureQualification signatureQualification;
/**
* Gets the value of the validationCertificateQualification property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the validationCertificateQualification property.
*
*
* For example, to add a new item, do as follows:
*
* getValidationCertificateQualification().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlValidationCertificateQualification }
*
*
*/
public List getValidationCertificateQualification() {
if (validationCertificateQualification == null) {
validationCertificateQualification = new ArrayList();
}
return this.validationCertificateQualification;
}
/**
* Gets the value of the signatureQualification property.
*
* @return
* possible object is
* {@link String }
*
*/
public SignatureQualification getSignatureQualification() {
return signatureQualification;
}
/**
* Sets the value of the signatureQualification property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSignatureQualification(SignatureQualification value) {
this.signatureQualification = value;
}
}