oasis.names.tc.opendocument.xmlns.manifest._1.EncryptionData Maven / Gradle / Ivy
//
// 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 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.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")
public class EncryptionData {
@XmlElement(required = true)
protected Algorithm algorithm;
@XmlElement(name = "key-derivation", required = true)
protected KeyDerivation keyDerivation;
@XmlAttribute(name = "checksum-type", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true)
protected String checksumType;
@XmlAttribute(name = "checksum", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true)
protected byte[] checksum;
/**
* Gets the value of the algorithm property.
*
* @return
* possible object is
* {@link Algorithm }
*
*/
public Algorithm getAlgorithm() {
return algorithm;
}
/**
* Sets the value of the algorithm property.
*
* @param value
* allowed object is
* {@link Algorithm }
*
*/
public void setAlgorithm(Algorithm value) {
this.algorithm = value;
}
/**
* Gets the value of the keyDerivation property.
*
* @return
* possible object is
* {@link KeyDerivation }
*
*/
public KeyDerivation getKeyDerivation() {
return keyDerivation;
}
/**
* Sets the value of the keyDerivation property.
*
* @param value
* allowed object is
* {@link KeyDerivation }
*
*/
public void setKeyDerivation(KeyDerivation value) {
this.keyDerivation = value;
}
/**
* Gets the value of the checksumType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChecksumType() {
return checksumType;
}
/**
* Sets the value of the checksumType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChecksumType(String value) {
this.checksumType = value;
}
/**
* Gets the value of the checksum property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getChecksum() {
return checksum;
}
/**
* Sets the value of the checksum property.
*
* @param value
* allowed object is
* byte[]
*/
public void setChecksum(byte[] value) {
this.checksum = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy