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

no.difi.commons.asic.jaxb.opendocument.manifest.Algorithm 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.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">
 *       <attGroup ref="{urn:oasis:names:tc:opendocument:xmlns:manifest:1.0}algorithm-attlist"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "algorithm") @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00") public class Algorithm { @XmlAttribute(name = "algorithm-name", 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 algorithmName; @XmlAttribute(name = "initialisation-vector", 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[] initialisationVector; /** * Gets the value of the algorithmName 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 getAlgorithmName() { return algorithmName; } /** * Sets the value of the algorithmName 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 setAlgorithmName(String value) { this.algorithmName = value; } /** * Gets the value of the initialisationVector 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[] getInitialisationVector() { return initialisationVector; } /** * Sets the value of the initialisationVector 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 setInitialisationVector(byte[] value) { this.initialisationVector = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy