![JAR search and dependency download from the Maven repository](/logo.png)
eu.europa.esig.dss.diagnostic.jaxb.XmlOriginalThirdCountryTrustServiceMapping 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.06.17 at 03:23:20 PM EEST
//
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.XmlElementWrapper;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for OriginalThirdCountryTrustServiceMapping complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OriginalThirdCountryTrustServiceMapping">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ServiceType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="CapturedQualifiers" type="{http://dss.esig.europa.eu/validation/diagnostic}CapturedQualifiers" minOccurs="0"/>
* <element name="AdditionalServiceInfoUris" type="{http://dss.esig.europa.eu/validation/diagnostic}AdditionalServiceInfoUris" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OriginalThirdCountryTrustServiceMapping", propOrder = {
"serviceType",
"status",
"capturedQualifiers",
"additionalServiceInfoUris"
})
public class XmlOriginalThirdCountryTrustServiceMapping implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "ServiceType")
protected String serviceType;
@XmlElement(name = "Status")
protected String status;
@XmlElementWrapper(name = "CapturedQualifiers")
@XmlElement(name = "Qualifier", namespace = "http://dss.esig.europa.eu/validation/diagnostic")
protected List capturedQualifiers;
@XmlElementWrapper(name = "AdditionalServiceInfoUris")
@XmlElement(name = "AdditionalServiceInfoUri", namespace = "http://dss.esig.europa.eu/validation/diagnostic")
protected List additionalServiceInfoUris;
/**
* Gets the value of the serviceType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServiceType() {
return serviceType;
}
/**
* Sets the value of the serviceType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServiceType(String value) {
this.serviceType = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatus(String value) {
this.status = value;
}
public List getCapturedQualifiers() {
if (capturedQualifiers == null) {
capturedQualifiers = new ArrayList();
}
return capturedQualifiers;
}
public void setCapturedQualifiers(List capturedQualifiers) {
this.capturedQualifiers = capturedQualifiers;
}
public List getAdditionalServiceInfoUris() {
if (additionalServiceInfoUris == null) {
additionalServiceInfoUris = new ArrayList();
}
return additionalServiceInfoUris;
}
public void setAdditionalServiceInfoUris(List additionalServiceInfoUris) {
this.additionalServiceInfoUris = additionalServiceInfoUris;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy