eu.europa.esig.dss.diagnostic.jaxb.XmlMRATrustServiceMapping 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.Date;
import eu.europa.esig.dss.jaxb.parsers.DateParser;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for MRATrustServiceMapping complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MRATrustServiceMapping">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="TrustServiceLegalIdentifier" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="EquivalenceStatusStartingTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="EquivalenceStatusEndingTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="OriginalThirdCountryMapping" type="{http://dss.esig.europa.eu/validation/diagnostic}OriginalThirdCountryTrustServiceMapping"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MRATrustServiceMapping", propOrder = {
"trustServiceLegalIdentifier",
"equivalenceStatusStartingTime",
"equivalenceStatusEndingTime",
"originalThirdCountryMapping"
})
public class XmlMRATrustServiceMapping implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "TrustServiceLegalIdentifier", required = true)
protected String trustServiceLegalIdentifier;
@XmlElement(name = "EquivalenceStatusStartingTime", required = true, type = String.class)
@XmlJavaTypeAdapter(DateParser.class)
@XmlSchemaType(name = "dateTime")
protected Date equivalenceStatusStartingTime;
@XmlElement(name = "EquivalenceStatusEndingTime", type = String.class)
@XmlJavaTypeAdapter(DateParser.class)
@XmlSchemaType(name = "dateTime")
protected Date equivalenceStatusEndingTime;
@XmlElement(name = "OriginalThirdCountryMapping", required = true)
protected XmlOriginalThirdCountryTrustServiceMapping originalThirdCountryMapping;
/**
* Gets the value of the trustServiceLegalIdentifier property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTrustServiceLegalIdentifier() {
return trustServiceLegalIdentifier;
}
/**
* Sets the value of the trustServiceLegalIdentifier property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTrustServiceLegalIdentifier(String value) {
this.trustServiceLegalIdentifier = value;
}
/**
* Gets the value of the equivalenceStatusStartingTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getEquivalenceStatusStartingTime() {
return equivalenceStatusStartingTime;
}
/**
* Sets the value of the equivalenceStatusStartingTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEquivalenceStatusStartingTime(Date value) {
this.equivalenceStatusStartingTime = value;
}
/**
* Gets the value of the equivalenceStatusEndingTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getEquivalenceStatusEndingTime() {
return equivalenceStatusEndingTime;
}
/**
* Sets the value of the equivalenceStatusEndingTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEquivalenceStatusEndingTime(Date value) {
this.equivalenceStatusEndingTime = value;
}
/**
* Gets the value of the originalThirdCountryMapping property.
*
* @return
* possible object is
* {@link XmlOriginalThirdCountryTrustServiceMapping }
*
*/
public XmlOriginalThirdCountryTrustServiceMapping getOriginalThirdCountryMapping() {
return originalThirdCountryMapping;
}
/**
* Sets the value of the originalThirdCountryMapping property.
*
* @param value
* allowed object is
* {@link XmlOriginalThirdCountryTrustServiceMapping }
*
*/
public void setOriginalThirdCountryMapping(XmlOriginalThirdCountryTrustServiceMapping value) {
this.originalThirdCountryMapping = value;
}
}