eu.europa.esig.dss.diagnostic.jaxb.XmlPDFAInfo 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElementWrapper;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PDFAInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PDFAInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ProfileId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ValidationMessages" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Error" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="compliant" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PDFAInfo", propOrder = {
"profileId",
"validationMessages"
})
public class XmlPDFAInfo implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "ProfileId", required = true)
protected String profileId;
@XmlElementWrapper(name = "ValidationMessages")
@XmlElement(name = "Error", namespace = "http://dss.esig.europa.eu/validation/diagnostic")
protected List validationMessages;
@XmlAttribute(name = "compliant", required = true)
protected boolean compliant;
/**
* Gets the value of the profileId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProfileId() {
return profileId;
}
/**
* Sets the value of the profileId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProfileId(String value) {
this.profileId = value;
}
/**
* Gets the value of the compliant property.
*
*/
public boolean isCompliant() {
return compliant;
}
/**
* Sets the value of the compliant property.
*
*/
public void setCompliant(boolean value) {
this.compliant = value;
}
public List getValidationMessages() {
if (validationMessages == null) {
validationMessages = new ArrayList();
}
return validationMessages;
}
public void setValidationMessages(List validationMessages) {
this.validationMessages = validationMessages;
}
}