All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.europa.esig.dss.diagnostic.jaxb.XmlContainerInfo Maven / Gradle / Ivy

The newest version!
//
// 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 eu.europa.esig.dss.enumerations.ASiCContainerType;
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;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

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://dss.esig.europa.eu/validation/diagnostic}ContainerType" 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 implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "ContainerType", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) protected ASiCContainerType 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 ASiCContainerType getContainerType() { return containerType; } /** * Sets the value of the containerType property. * * @param value * allowed object is * {@link String } * */ public void setContainerType(ASiCContainerType 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy