Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
778 blopes 1
//
2
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementa��o de Refer�ncia (JAXB) de Bind XML, v2.2.8-b130911.1802 
3
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Todas as modifica��es neste arquivo ser�o perdidas ap�s a recompila��o do esquema de origem. 
5
// Gerado em: 2017.05.30 �s 08:31:54 PM GFT 
6
//
7
 
8
 
9
package nfce;
10
 
11
import java.util.ArrayList;
12
import java.util.List;
13
import javax.xml.bind.annotation.XmlAccessType;
14
import javax.xml.bind.annotation.XmlAccessorType;
15
import javax.xml.bind.annotation.XmlAttribute;
16
import javax.xml.bind.annotation.XmlElement;
17
import javax.xml.bind.annotation.XmlType;
18
 
19
 
20
/**
21
 * <p>Classe Java de TransformType complex type.
22
 *
23
 * <p>O seguinte fragmento do esquema especifica o conte�do esperado contido dentro desta classe.
24
 *
25
 * <pre>
26
 * &lt;complexType name="TransformType">
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence maxOccurs="unbounded" minOccurs="0">
30
 *         &lt;element name="XPath" type="{http://www.w3.org/2001/XMLSchema}string"/>
31
 *       &lt;/sequence>
32
 *       &lt;attribute name="Algorithm" use="required" type="{http://www.w3.org/2000/09/xmldsig#}TTransformURI" />
33
 *     &lt;/restriction>
34
 *   &lt;/complexContent>
35
 * &lt;/complexType>
36
 * </pre>
37
 *
38
 *
39
 */
40
@XmlAccessorType(XmlAccessType.FIELD)
41
@XmlType(name = "TransformType", namespace = "http://www.w3.org/2000/09/xmldsig#", propOrder = {
42
    "xPath"
43
})
44
public class TransformType {
45
 
46
    @XmlElement(name = "XPath")
47
    protected List<String> xPath;
48
    @XmlAttribute(name = "Algorithm", required = true)
49
    protected String algorithm;
50
 
51
    /**
52
     * Gets the value of the xPath property.
53
     *
54
     * <p>
55
     * This accessor method returns a reference to the live list,
56
     * not a snapshot. Therefore any modification you make to the
57
     * returned list will be present inside the JAXB object.
58
     * This is why there is not a <CODE>set</CODE> method for the xPath property.
59
     *
60
     * <p>
61
     * For example, to add a new item, do as follows:
62
     * <pre>
63
     *    getXPath().add(newItem);
64
     * </pre>
65
     *
66
     *
67
     * <p>
68
     * Objects of the following type(s) are allowed in the list
69
     * {@link String }
70
     *
71
     *
72
     */
73
    public List<String> getXPath() {
74
        if (xPath == null) {
75
            xPath = new ArrayList<String>();
76
        }
77
        return this.xPath;
78
    }
79
 
80
    /**
81
     * Obt�m o valor da propriedade algorithm.
82
     *
83
     * @return
84
     *     possible object is
85
     *     {@link String }
86
     *    
87
     */
88
    public String getAlgorithm() {
89
        return algorithm;
90
    }
91
 
92
    /**
93
     * Define o valor da propriedade algorithm.
94
     *
95
     * @param value
96
     *     allowed object is
97
     *     {@link String }
98
     *    
99
     */
100
    public void setAlgorithm(String value) {
101
        this.algorithm = value;
102
    }
103
 
104
}