oasis.names.tc.opendocument.xmlns.manifest._1.FileEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-asic Show documentation
Show all versions of commons-asic Show documentation
Generic implementation of ASiC-E archives in accordance with ETSI 102 918 v1.3.1.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.04.07 at 02:26:28 PM CEST
//
package oasis.names.tc.opendocument.xmlns.manifest._1;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:oasis:names:tc:opendocument:xmlns:manifest:1.0}encryption-data" minOccurs="0"/>
* </sequence>
* <attGroup ref="{urn:oasis:names:tc:opendocument:xmlns:manifest:1.0}file-entry-attlist"/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"encryptionData"
})
@XmlRootElement(name = "file-entry")
public class FileEntry {
@XmlElement(name = "encryption-data")
protected EncryptionData encryptionData;
@XmlAttribute(name = "full-path", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true)
protected String fullPath;
@XmlAttribute(name = "size", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger size;
@XmlAttribute(name = "media-type", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true)
protected String mediaType;
/**
* Gets the value of the encryptionData property.
*
* @return
* possible object is
* {@link EncryptionData }
*
*/
public EncryptionData getEncryptionData() {
return encryptionData;
}
/**
* Sets the value of the encryptionData property.
*
* @param value
* allowed object is
* {@link EncryptionData }
*
*/
public void setEncryptionData(EncryptionData value) {
this.encryptionData = value;
}
/**
* Gets the value of the fullPath property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFullPath() {
return fullPath;
}
/**
* Sets the value of the fullPath property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFullPath(String value) {
this.fullPath = value;
}
/**
* Gets the value of the size property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(BigInteger value) {
this.size = value;
}
/**
* Gets the value of the mediaType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMediaType() {
return mediaType;
}
/**
* Sets the value of the mediaType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMediaType(String value) {
this.mediaType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy