eu.europa.esig.dss.jaxb.diagnostic.XmlContainerInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-diagnostic-jaxb Show documentation
Show all versions of dss-diagnostic-jaxb Show documentation
Generated source from XSD for Diagnostic Data.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.05.29 at 09:26:39 AM CEST
//
package eu.europa.esig.dss.jaxb.diagnostic;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ContainerInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ContainerInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ContainerType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ZipComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="MimeTypeFilePresent" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="MimeTypeContent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ManifestFiles" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ManifestFile" type="{http://dss.esig.europa.eu/validation/diagnostic}ManifestFile" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="ContentFiles" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ContentFile" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ContainerInfo", propOrder = {
"containerType",
"zipComment",
"mimeTypeFilePresent",
"mimeTypeContent",
"manifestFiles",
"contentFiles"
})
public class XmlContainerInfo {
@XmlElement(name = "ContainerType")
protected String containerType;
@XmlElement(name = "ZipComment")
protected String zipComment;
@XmlElement(name = "MimeTypeFilePresent")
protected Boolean mimeTypeFilePresent;
@XmlElement(name = "MimeTypeContent")
protected String mimeTypeContent;
@XmlElementWrapper(name = "ManifestFiles")
@XmlElement(name = "ManifestFile", namespace = "http://dss.esig.europa.eu/validation/diagnostic")
protected List manifestFiles;
@XmlElementWrapper(name = "ContentFiles")
@XmlElement(name = "ContentFile", namespace = "http://dss.esig.europa.eu/validation/diagnostic")
protected List contentFiles;
/**
* Gets the value of the containerType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContainerType() {
return containerType;
}
/**
* Sets the value of the containerType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContainerType(String value) {
this.containerType = value;
}
/**
* Gets the value of the zipComment property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZipComment() {
return zipComment;
}
/**
* Sets the value of the zipComment property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZipComment(String value) {
this.zipComment = value;
}
/**
* Gets the value of the mimeTypeFilePresent property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMimeTypeFilePresent() {
return mimeTypeFilePresent;
}
/**
* Sets the value of the mimeTypeFilePresent property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMimeTypeFilePresent(Boolean value) {
this.mimeTypeFilePresent = value;
}
/**
* Gets the value of the mimeTypeContent property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMimeTypeContent() {
return mimeTypeContent;
}
/**
* Sets the value of the mimeTypeContent property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMimeTypeContent(String value) {
this.mimeTypeContent = value;
}
public List getManifestFiles() {
if (manifestFiles == null) {
manifestFiles = new ArrayList();
}
return manifestFiles;
}
public void setManifestFiles(List manifestFiles) {
this.manifestFiles = manifestFiles;
}
public List getContentFiles() {
if (contentFiles == null) {
contentFiles = new ArrayList();
}
return contentFiles;
}
public void setContentFiles(List contentFiles) {
this.contentFiles = contentFiles;
}
}