Class XmlContainerInfo
- java.lang.Object
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlContainerInfo
-
- All Implemented Interfaces:
Serializable
public class XmlContainerInfo extends Object implements Serializable
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>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringcontainerTypeprotected List<String>contentFilesprotected List<XmlManifestFile>manifestFilesprotected StringmimeTypeContentprotected BooleanmimeTypeFilePresentprotected StringzipComment
-
Constructor Summary
Constructors Constructor Description XmlContainerInfo()
-
Method Summary
Modifier and Type Method Description StringgetContainerType()Gets the value of the containerType property.List<String>getContentFiles()List<XmlManifestFile>getManifestFiles()StringgetMimeTypeContent()Gets the value of the mimeTypeContent property.StringgetZipComment()Gets the value of the zipComment property.BooleanisMimeTypeFilePresent()Gets the value of the mimeTypeFilePresent property.voidsetContainerType(String value)Sets the value of the containerType property.voidsetContentFiles(List<String> contentFiles)voidsetManifestFiles(List<XmlManifestFile> manifestFiles)voidsetMimeTypeContent(String value)Sets the value of the mimeTypeContent property.voidsetMimeTypeFilePresent(Boolean value)Sets the value of the mimeTypeFilePresent property.voidsetZipComment(String value)Sets the value of the zipComment property.
-
-
-
Method Detail
-
getContainerType
public String getContainerType()
Gets the value of the containerType property.- Returns:
- possible object is
String
-
setContainerType
public void setContainerType(String value)
Sets the value of the containerType property.- Parameters:
value- allowed object isString
-
getZipComment
public String getZipComment()
Gets the value of the zipComment property.- Returns:
- possible object is
String
-
setZipComment
public void setZipComment(String value)
Sets the value of the zipComment property.- Parameters:
value- allowed object isString
-
isMimeTypeFilePresent
public Boolean isMimeTypeFilePresent()
Gets the value of the mimeTypeFilePresent property.- Returns:
- possible object is
Boolean
-
setMimeTypeFilePresent
public void setMimeTypeFilePresent(Boolean value)
Sets the value of the mimeTypeFilePresent property.- Parameters:
value- allowed object isBoolean
-
getMimeTypeContent
public String getMimeTypeContent()
Gets the value of the mimeTypeContent property.- Returns:
- possible object is
String
-
setMimeTypeContent
public void setMimeTypeContent(String value)
Sets the value of the mimeTypeContent property.- Parameters:
value- allowed object isString
-
getManifestFiles
public List<XmlManifestFile> getManifestFiles()
-
setManifestFiles
public void setManifestFiles(List<XmlManifestFile> manifestFiles)
-
-