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

se.swedenconnect.schemas.dss_1_0.SignatureObject 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 java.util.ArrayList;
import java.util.List;
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.XmlIDREF;
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.SignatureType;


/**
 * 

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>
 *         <choice>
 *           <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature"/>
 *           <element ref="{urn:oasis:names:tc:dss:1.0:core:schema}Timestamp"/>
 *           <element ref="{urn:oasis:names:tc:dss:1.0:core:schema}Base64Signature"/>
 *           <element ref="{urn:oasis:names:tc:dss:1.0:core:schema}SignaturePtr"/>
 *           <element name="Other" type="{urn:oasis:names:tc:dss:1.0:core:schema}AnyType"/>
 *         </choice>
 *       </sequence>
 *       <attribute name="SchemaRefs" type="{http://www.w3.org/2001/XMLSchema}IDREFS" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "other", "signaturePtr", "base64Signature", "timestamp", "signature" }) @XmlRootElement(name = "SignatureObject") public class SignatureObject { @XmlElement(name = "Other") protected AnyType other; @XmlElement(name = "SignaturePtr") protected SignaturePtr signaturePtr; @XmlElement(name = "Base64Signature") protected Base64Signature base64Signature; @XmlElement(name = "Timestamp") protected Timestamp timestamp; @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#") protected SignatureType signature; @XmlAttribute(name = "SchemaRefs") @XmlIDREF @XmlSchemaType(name = "IDREFS") protected List schemaRefs; /** * Gets the value of the other property. * * @return * possible object is * {@link AnyType } * */ public AnyType getOther() { return other; } /** * Sets the value of the other property. * * @param value * allowed object is * {@link AnyType } * */ public void setOther(AnyType value) { this.other = value; } public boolean isSetOther() { return (this.other!= null); } /** * Gets the value of the signaturePtr property. * * @return * possible object is * {@link SignaturePtr } * */ public SignaturePtr getSignaturePtr() { return signaturePtr; } /** * Sets the value of the signaturePtr property. * * @param value * allowed object is * {@link SignaturePtr } * */ public void setSignaturePtr(SignaturePtr value) { this.signaturePtr = value; } public boolean isSetSignaturePtr() { return (this.signaturePtr!= null); } /** * Gets the value of the base64Signature property. * * @return * possible object is * {@link Base64Signature } * */ public Base64Signature getBase64Signature() { return base64Signature; } /** * Sets the value of the base64Signature property. * * @param value * allowed object is * {@link Base64Signature } * */ public void setBase64Signature(Base64Signature value) { this.base64Signature = value; } public boolean isSetBase64Signature() { return (this.base64Signature!= null); } /** * Gets the value of the timestamp property. * * @return * possible object is * {@link Timestamp } * */ public Timestamp getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value * allowed object is * {@link Timestamp } * */ public void setTimestamp(Timestamp value) { this.timestamp = value; } public boolean isSetTimestamp() { return (this.timestamp!= null); } /** * Gets the value of the signature property. * * @return * possible object is * {@link SignatureType } * */ public SignatureType getSignature() { return signature; } /** * Sets the value of the signature property. * * @param value * allowed object is * {@link SignatureType } * */ public void setSignature(SignatureType value) { this.signature = value; } public boolean isSetSignature() { return (this.signature!= null); } /** * Gets the value of the schemaRefs property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the schemaRefs property. * *

* For example, to add a new item, do as follows: *

     *    getSchemaRefs().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getSchemaRefs() { if (schemaRefs == null) { schemaRefs = new ArrayList(); } return this.schemaRefs; } public boolean isSetSchemaRefs() { return ((this.schemaRefs!= null)&&(!this.schemaRefs.isEmpty())); } public void unsetSchemaRefs() { this.schemaRefs = null; } }