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

se.swedenconnect.schemas.dss_1_0.AttachmentReference Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.10.06 at 01:06:56 PM CEST 
//


package se.swedenconnect.schemas.dss_1_0;

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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import org.apache.xml.security.binding.xmldsig.DigestMethodType;


/**
 * 

Java class for AttachmentReferenceType complex type. * *

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

 * <complexType name="AttachmentReferenceType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence minOccurs="0">
 *         <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestMethod"/>
 *         <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestValue"/>
 *       </sequence>
 *       <attribute name="AttRefURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttachmentReferenceType", propOrder = { "digestMethod", "digestValue" }) @XmlRootElement(name = "AttachmentReference") public class AttachmentReference { @XmlElement(name = "DigestMethod", namespace = "http://www.w3.org/2000/09/xmldsig#") protected DigestMethodType digestMethod; @XmlElement(name = "DigestValue", namespace = "http://www.w3.org/2000/09/xmldsig#") protected byte[] digestValue; @XmlAttribute(name = "AttRefURI") @XmlSchemaType(name = "anyURI") protected String attRefURI; @XmlAttribute(name = "MimeType") protected String mimeType; /** * Gets the value of the digestMethod property. * * @return * possible object is * {@link DigestMethodType } * */ public DigestMethodType getDigestMethod() { return digestMethod; } /** * Sets the value of the digestMethod property. * * @param value * allowed object is * {@link DigestMethodType } * */ public void setDigestMethod(DigestMethodType value) { this.digestMethod = value; } public boolean isSetDigestMethod() { return (this.digestMethod!= null); } /** * 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; } public boolean isSetDigestValue() { return (this.digestValue!= null); } /** * Gets the value of the attRefURI property. * * @return * possible object is * {@link String } * */ public String getAttRefURI() { return attRefURI; } /** * Sets the value of the attRefURI property. * * @param value * allowed object is * {@link String } * */ public void setAttRefURI(String value) { this.attRefURI = value; } public boolean isSetAttRefURI() { return (this.attRefURI!= null); } /** * Gets the value of the mimeType property. * * @return * possible object is * {@link String } * */ public String getMimeType() { return mimeType; } /** * Sets the value of the mimeType property. * * @param value * allowed object is * {@link String } * */ public void setMimeType(String value) { this.mimeType = value; } public boolean isSetMimeType() { return (this.mimeType!= null); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy