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

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

//
// 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.02.24 at 11:49:44 AM CET 
//


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.XmlIDREF;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
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">
 *       <choice>
 *         <element name="XPathAfter" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="XPathFirstChildOf" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </choice>
 *       <attribute name="WhichDocument" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
 *       <attribute name="CreateEnvelopedSignature" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "xPathFirstChildOf", "xPathAfter" }) @XmlRootElement(name = "SignaturePlacement") public class SignaturePlacement { @XmlElement(name = "XPathFirstChildOf") protected String xPathFirstChildOf; @XmlElement(name = "XPathAfter") protected String xPathAfter; @XmlAttribute(name = "WhichDocument") @XmlIDREF @XmlSchemaType(name = "IDREF") protected Object whichDocument; @XmlAttribute(name = "CreateEnvelopedSignature") protected Boolean createEnvelopedSignature; /** * Gets the value of the xPathFirstChildOf property. * * @return * possible object is * {@link String } * */ public String getXPathFirstChildOf() { return xPathFirstChildOf; } /** * Sets the value of the xPathFirstChildOf property. * * @param value * allowed object is * {@link String } * */ public void setXPathFirstChildOf(String value) { this.xPathFirstChildOf = value; } public boolean isSetXPathFirstChildOf() { return (this.xPathFirstChildOf!= null); } /** * Gets the value of the xPathAfter property. * * @return * possible object is * {@link String } * */ public String getXPathAfter() { return xPathAfter; } /** * Sets the value of the xPathAfter property. * * @param value * allowed object is * {@link String } * */ public void setXPathAfter(String value) { this.xPathAfter = value; } public boolean isSetXPathAfter() { return (this.xPathAfter!= null); } /** * Gets the value of the whichDocument property. * * @return * possible object is * {@link Object } * */ public Object getWhichDocument() { return whichDocument; } /** * Sets the value of the whichDocument property. * * @param value * allowed object is * {@link Object } * */ public void setWhichDocument(Object value) { this.whichDocument = value; } public boolean isSetWhichDocument() { return (this.whichDocument!= null); } /** * Gets the value of the createEnvelopedSignature property. * * @return * possible object is * {@link Boolean } * */ public boolean isCreateEnvelopedSignature() { if (createEnvelopedSignature == null) { return true; } else { return createEnvelopedSignature; } } /** * Sets the value of the createEnvelopedSignature property. * * @param value * allowed object is * {@link Boolean } * */ public void setCreateEnvelopedSignature(boolean value) { this.createEnvelopedSignature = value; } public boolean isSetCreateEnvelopedSignature() { return (this.createEnvelopedSignature!= null); } public void unsetCreateEnvelopedSignature() { this.createEnvelopedSignature = null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy