eu.europa.esig.dss.diagnostic.jaxb.XmlAuthorityInformationAccess Maven / Gradle / Ivy
//
// 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.09.11 at 03:26:28 PM CEST
//
package eu.europa.esig.dss.diagnostic.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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for AuthorityInformationAccess complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AuthorityInformationAccess">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/diagnostic}CertificateExtension">
* <sequence>
* <element name="caIssuersUrl" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ocspUrl" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AuthorityInformationAccess", propOrder = {
"caIssuersUrls",
"ocspUrls"
})
public class XmlAuthorityInformationAccess
extends XmlCertificateExtension
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "caIssuersUrl")
protected List caIssuersUrls;
@XmlElement(name = "ocspUrl")
protected List ocspUrls;
/**
* Gets the value of the caIssuersUrls 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 caIssuersUrls property.
*
*
* For example, to add a new item, do as follows:
*
* getCaIssuersUrls().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getCaIssuersUrls() {
if (caIssuersUrls == null) {
caIssuersUrls = new ArrayList();
}
return this.caIssuersUrls;
}
/**
* Gets the value of the ocspUrls 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 ocspUrls property.
*
*
* For example, to add a new item, do as follows:
*
* getOcspUrls().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getOcspUrls() {
if (ocspUrls == null) {
ocspUrls = new ArrayList();
}
return this.ocspUrls;
}
}