eu.europa.esig.dss.detailedreport.jaxb.XmlConstraintsConclusion 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ConstraintsConclusion complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ConstraintsConclusion">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Constraint" type="{http://dss.esig.europa.eu/validation/detailed-report}Constraint" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Conclusion" type="{http://dss.esig.europa.eu/validation/detailed-report}Conclusion"/>
* </sequence>
* <attribute name="Title" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ConstraintsConclusion", propOrder = {
"constraint",
"conclusion"
})
@XmlSeeAlso({
XmlCertificate.class,
XmlTLAnalysis.class,
XmlValidationSignatureQualification.class,
XmlValidationCertificateQualification.class,
XmlValidationProcessBasicTimestamp.class,
XmlValidationTimestampQualification.class,
XmlValidationTimestampQualificationAtTime.class,
XmlRevocationBasicValidation.class,
XmlConstraintsConclusionWithProofOfExistence.class,
XmlFC.class,
XmlISC.class,
XmlVCI.class,
XmlRFC.class,
XmlCRS.class,
XmlRAC.class,
XmlCC.class,
XmlCV.class,
XmlSAV.class,
XmlXCV.class,
XmlSubXCV.class,
XmlConstraintsConclusionWithControlTime.class
})
public class XmlConstraintsConclusion implements Serializable
{
private static final long serialVersionUID = 1L;
@XmlElement(name = "Constraint")
protected List constraint;
@XmlElement(name = "Conclusion", required = true)
protected XmlConclusion conclusion;
@XmlAttribute(name = "Title", required = true)
protected String title;
/**
* Gets the value of the constraint 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 constraint property.
*
*
* For example, to add a new item, do as follows:
*
* getConstraint().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlConstraint }
*
*
*/
public List getConstraint() {
if (constraint == null) {
constraint = new ArrayList();
}
return this.constraint;
}
/**
* Gets the value of the conclusion property.
*
* @return
* possible object is
* {@link XmlConclusion }
*
*/
public XmlConclusion getConclusion() {
return conclusion;
}
/**
* Sets the value of the conclusion property.
*
* @param value
* allowed object is
* {@link XmlConclusion }
*
*/
public void setConclusion(XmlConclusion value) {
this.conclusion = value;
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
}