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

eu.europa.esig.dss.diagnostic.jaxb.XmlSignatureDigestReference Maven / Gradle / Ivy

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: 2024.06.17 at 03:23:20 PM EEST 
//


package eu.europa.esig.dss.diagnostic.jaxb;

import java.io.Serializable;
import eu.europa.esig.dss.enumerations.DigestAlgorithm;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for SignatureDigestReference complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SignatureDigestReference">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CanonicalizationMethod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DigestMethod" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="DigestValue" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignatureDigestReference", propOrder = { "canonicalizationMethod", "digestMethod", "digestValue" }) public class XmlSignatureDigestReference implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "CanonicalizationMethod") protected String canonicalizationMethod; @XmlElement(name = "DigestMethod", required = true, type = String.class) @XmlJavaTypeAdapter(Adapter23 .class) protected DigestAlgorithm digestMethod; @XmlElement(name = "DigestValue", required = true) protected byte[] digestValue; /** * Gets the value of the canonicalizationMethod property. * * @return * possible object is * {@link String } * */ public String getCanonicalizationMethod() { return canonicalizationMethod; } /** * Sets the value of the canonicalizationMethod property. * * @param value * allowed object is * {@link String } * */ public void setCanonicalizationMethod(String value) { this.canonicalizationMethod = value; } /** * Gets the value of the digestMethod property. * * @return * possible object is * {@link String } * */ public DigestAlgorithm getDigestMethod() { return digestMethod; } /** * Sets the value of the digestMethod property. * * @param value * allowed object is * {@link String } * */ public void setDigestMethod(DigestAlgorithm value) { this.digestMethod = value; } /** * Gets the value of the digestValue property. * * @return * possible object is * byte[] */ public byte[] getDigestValue() { return digestValue; } /** * Sets the value of the digestValue property. * * @param value * allowed object is * byte[] */ public void setDigestValue(byte[] value) { this.digestValue = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy