package eu.europa.ec.markt.dss.ws.signature; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for dssTransform complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="dssTransform"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="algorithm" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="elementName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="namespace" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="perform" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * <element name="textContent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "dssTransform", propOrder = { "algorithm", "elementName", "namespace", "perform", "textContent" }) public class DssTransform { protected String algorithm; protected String elementName; protected String namespace; protected boolean perform; protected String textContent; /** * Gets the value of the algorithm property. * * @return * possible object is * {@link String } * */ public String getAlgorithm() { return algorithm; } /** * Sets the value of the algorithm property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithm(String value) { this.algorithm = value; } /** * Gets the value of the elementName property. * * @return * possible object is * {@link String } * */ public String getElementName() { return elementName; } /** * Sets the value of the elementName property. * * @param value * allowed object is * {@link String } * */ public void setElementName(String value) { this.elementName = value; } /** * Gets the value of the namespace property. * * @return * possible object is * {@link String } * */ public String getNamespace() { return namespace; } /** * Sets the value of the namespace property. * * @param value * allowed object is * {@link String } * */ public void setNamespace(String value) { this.namespace = value; } /** * Gets the value of the perform property. * */ public boolean isPerform() { return perform; } /** * Sets the value of the perform property. * */ public void setPerform(boolean value) { this.perform = value; } /** * Gets the value of the textContent property. * * @return * possible object is * {@link String } * */ public String getTextContent() { return textContent; } /** * Sets the value of the textContent property. * * @param value * allowed object is * {@link String } * */ public void setTextContent(String value) { this.textContent = value; } }