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

no.difi.commons.asic.jaxb.opendocument.manifest.FileEntry Maven / Gradle / Ivy

Go to download

Generic implementation of ASiC-E archives in accordance with ETSI 102 918 v1.3.1.

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: 2025.05.09 at 10:24:43 AM CEST 
//


package no.difi.commons.asic.jaxb.opendocument.manifest;

import java.math.BigInteger;
import jakarta.annotation.Generated;
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.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.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") @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public class FileEntry { @XmlElement(name = "encryption-data") @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") protected EncryptionData encryptionData; @XmlAttribute(name = "full-path", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true) @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") protected String fullPath; @XmlAttribute(name = "size", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0") @XmlSchemaType(name = "nonNegativeInteger") @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") protected BigInteger size; @XmlAttribute(name = "media-type", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true) @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") protected String mediaType; /** * Gets the value of the encryptionData property. * * @return * possible object is * {@link EncryptionData } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public EncryptionData getEncryptionData() { return encryptionData; } /** * Sets the value of the encryptionData property. * * @param value * allowed object is * {@link EncryptionData } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public void setEncryptionData(EncryptionData value) { this.encryptionData = value; } /** * Gets the value of the fullPath property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public String getFullPath() { return fullPath; } /** * Sets the value of the fullPath property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public void setFullPath(String value) { this.fullPath = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link BigInteger } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public BigInteger getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link BigInteger } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public void setSize(BigInteger value) { this.size = value; } /** * Gets the value of the mediaType property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public String getMediaType() { return mediaType; } /** * Sets the value of the mediaType property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public void setMediaType(String value) { this.mediaType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy