
no.difi.commons.asic.jaxb.opendocument.manifest.KeyDerivation 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.
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.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">
* <attGroup ref="{urn:oasis:names:tc:opendocument:xmlns:manifest:1.0}key-derivation-attlist"/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "key-derivation")
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v3.0.2", date = "2025-05-09T10:24:43+02:00")
public class KeyDerivation {
@XmlAttribute(name = "key-derivation-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 keyDerivationName;
@XmlAttribute(name = "salt", 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[] salt;
@XmlAttribute(name = "iteration-count", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true)
@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 iterationCount;
/**
* Gets the value of the keyDerivationName 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 getKeyDerivationName() {
return keyDerivationName;
}
/**
* Sets the value of the keyDerivationName 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 setKeyDerivationName(String value) {
this.keyDerivationName = value;
}
/**
* Gets the value of the salt 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[] getSalt() {
return salt;
}
/**
* Sets the value of the salt 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 setSalt(byte[] value) {
this.salt = value;
}
/**
* Gets the value of the iterationCount 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 getIterationCount() {
return iterationCount;
}
/**
* Sets the value of the iterationCount 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 setIterationCount(BigInteger value) {
this.iterationCount = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy