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

no.difi.commons.asic.jaxb.opendocument.manifest.EncryptionData 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 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.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}algorithm"/>
 *         <element ref="{urn:oasis:names:tc:opendocument:xmlns:manifest:1.0}key-derivation"/>
 *       </sequence>
 *       <attGroup ref="{urn:oasis:names:tc:opendocument:xmlns:manifest:1.0}encryption-data-attlist"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "algorithm", "keyDerivation" }) @XmlRootElement(name = "encryption-data") @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public class EncryptionData { @XmlElement(required = true) @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") protected Algorithm algorithm; @XmlElement(name = "key-derivation", required = true) @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") protected KeyDerivation keyDerivation; @XmlAttribute(name = "checksum-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 checksumType; @XmlAttribute(name = "checksum", 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 byte[] checksum; /** * Gets the value of the algorithm property. * * @return * possible object is * {@link Algorithm } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public Algorithm getAlgorithm() { return algorithm; } /** * Sets the value of the algorithm property. * * @param value * allowed object is * {@link Algorithm } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public void setAlgorithm(Algorithm value) { this.algorithm = value; } /** * Gets the value of the keyDerivation property. * * @return * possible object is * {@link KeyDerivation } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public KeyDerivation getKeyDerivation() { return keyDerivation; } /** * Sets the value of the keyDerivation property. * * @param value * allowed object is * {@link KeyDerivation } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public void setKeyDerivation(KeyDerivation value) { this.keyDerivation = value; } /** * Gets the value of the checksumType 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 getChecksumType() { return checksumType; } /** * Sets the value of the checksumType 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 setChecksumType(String value) { this.checksumType = value; } /** * Gets the value of the checksum property. * * @return * possible object is * byte[] */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public byte[] getChecksum() { return checksum; } /** * Sets the value of the checksum property. * * @param value * allowed object is * byte[] */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public void setChecksum(byte[] value) { this.checksum = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy