eu.europa.esig.dss.detailedreport.jaxb.XmlSubXCV Maven / Gradle / Ivy
Show all versions of dss-detailed-report-jaxb Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.24 at 03:19:12 PM CET
//
package eu.europa.esig.dss.detailedreport.jaxb;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlList;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for SubXCV complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SubXCV">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion">
* <sequence>
* <element name="CrossCertificate" minOccurs="0">
* <simpleType>
* <list itemType="{http://www.w3.org/2001/XMLSchema}string" />
* </simpleType>
* </element>
* <element name="EquivalentCertificate" minOccurs="0">
* <simpleType>
* <list itemType="{http://www.w3.org/2001/XMLSchema}string" />
* </simpleType>
* </element>
* <element name="CRS" type="{http://dss.esig.europa.eu/validation/detailed-report}CRS" minOccurs="0"/>
* <element name="RFC" type="{http://dss.esig.europa.eu/validation/detailed-report}RFC" minOccurs="0"/>
* <element name="RevocationInfo" type="{http://dss.esig.europa.eu/validation/detailed-report}RevocationInformation" minOccurs="0"/>
* </sequence>
* <attribute name="Id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="TrustAnchor" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="SelfSigned" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubXCV", propOrder = {
"crossCertificates",
"equivalentCertificates",
"crs",
"rfc",
"revocationInfo"
})
public class XmlSubXCV
extends XmlConstraintsConclusion
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlList
@XmlElement(name = "CrossCertificate")
protected List crossCertificates;
@XmlList
@XmlElement(name = "EquivalentCertificate")
protected List equivalentCertificates;
@XmlElement(name = "CRS")
protected XmlCRS crs;
@XmlElement(name = "RFC")
protected XmlRFC rfc;
@XmlElement(name = "RevocationInfo")
protected XmlRevocationInformation revocationInfo;
@XmlAttribute(name = "Id", required = true)
protected String id;
@XmlAttribute(name = "TrustAnchor")
protected Boolean trustAnchor;
@XmlAttribute(name = "SelfSigned")
protected Boolean selfSigned;
/**
* Gets the value of the crossCertificates 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 Jakarta XML Binding object.
* This is why there is not a set
method for the crossCertificates property.
*
*
* For example, to add a new item, do as follows:
*
* getCrossCertificates().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getCrossCertificates() {
if (crossCertificates == null) {
crossCertificates = new ArrayList();
}
return this.crossCertificates;
}
/**
* Gets the value of the equivalentCertificates 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 Jakarta XML Binding object.
* This is why there is not a set
method for the equivalentCertificates property.
*
*
* For example, to add a new item, do as follows:
*
* getEquivalentCertificates().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getEquivalentCertificates() {
if (equivalentCertificates == null) {
equivalentCertificates = new ArrayList();
}
return this.equivalentCertificates;
}
/**
* Gets the value of the crs property.
*
* @return
* possible object is
* {@link XmlCRS }
*
*/
public XmlCRS getCRS() {
return crs;
}
/**
* Sets the value of the crs property.
*
* @param value
* allowed object is
* {@link XmlCRS }
*
*/
public void setCRS(XmlCRS value) {
this.crs = value;
}
/**
* Gets the value of the rfc property.
*
* @return
* possible object is
* {@link XmlRFC }
*
*/
public XmlRFC getRFC() {
return rfc;
}
/**
* Sets the value of the rfc property.
*
* @param value
* allowed object is
* {@link XmlRFC }
*
*/
public void setRFC(XmlRFC value) {
this.rfc = value;
}
/**
* Gets the value of the revocationInfo property.
*
* @return
* possible object is
* {@link XmlRevocationInformation }
*
*/
public XmlRevocationInformation getRevocationInfo() {
return revocationInfo;
}
/**
* Sets the value of the revocationInfo property.
*
* @param value
* allowed object is
* {@link XmlRevocationInformation }
*
*/
public void setRevocationInfo(XmlRevocationInformation value) {
this.revocationInfo = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the trustAnchor property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isTrustAnchor() {
return trustAnchor;
}
/**
* Sets the value of the trustAnchor property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTrustAnchor(Boolean value) {
this.trustAnchor = value;
}
/**
* Gets the value of the selfSigned property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSelfSigned() {
return selfSigned;
}
/**
* Sets the value of the selfSigned property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSelfSigned(Boolean value) {
this.selfSigned = value;
}
}