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

br.com.swconsultoria.mdfe.schema_300.retConsSitMDFe.TransformType Maven / Gradle / Ivy

The newest version!

package br.com.swconsultoria.mdfe.schema_300.retConsSitMDFe;

import javax.xml.bind.annotation.*;
import java.util.ArrayList;
import java.util.List;


/**
 * 

Classe Java de TransformType complex type. * *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. * *

 * <complexType name="TransformType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence maxOccurs="unbounded" minOccurs="0">
 *         <element name="XPath" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *       <attribute name="Algorithm" use="required" type="{http://www.w3.org/2000/09/xmldsig#}TTransformURI" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TransformType", propOrder = { "xPath" }) public class TransformType { @XmlElement(name = "XPath") protected List xPath; @XmlAttribute(name = "Algorithm", required = true) protected String algorithm; /** * Gets the value of the xPath 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 xPath property. * *

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

     *    getXPath().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } */ public List getXPath() { if (xPath == null) { xPath = new ArrayList(); } return this.xPath; } /** * Obtém o valor da propriedade algorithm. * * @return possible object is * {@link String } */ public String getAlgorithm() { return algorithm; } /** * Define o valor da propriedade algorithm. * * @param value allowed object is * {@link String } */ public void setAlgorithm(String value) { this.algorithm = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy