Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
492 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
 *  Tipo Pedido de Concess�o de Autoriza��o da Nota Fiscal Eletr�nica
22
 *
23
 * <p>Classe Java de TEnviNFe complex type.
24
 *
25
 * <p>O seguinte fragmento do esquema especifica o conte�do esperado contido dentro desta classe.
26
 *
27
 * <pre>
28
 * &lt;complexType name="TEnviNFe">
29
 *   &lt;complexContent>
30
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31
 *       &lt;sequence>
32
 *         &lt;element name="idLote" type="{http://www.portalfiscal.inf.br/nfe}TIdLote"/>
33
 *         &lt;element name="indSinc">
34
 *           &lt;simpleType>
35
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
36
 *               &lt;whiteSpace value="preserve"/>
37
 *               &lt;enumeration value="0"/>
38
 *               &lt;enumeration value="1"/>
39
 *             &lt;/restriction>
40
 *           &lt;/simpleType>
41
 *         &lt;/element>
42
 *         &lt;element name="NFe" type="{http://www.portalfiscal.inf.br/nfe}TNFe" maxOccurs="50"/>
43
 *       &lt;/sequence>
44
 *       &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/nfe}TVerNFe" />
45
 *     &lt;/restriction>
46
 *   &lt;/complexContent>
47
 * &lt;/complexType>
48
 * </pre>
49
 *
50
 *
51
 */
52
@XmlAccessorType(XmlAccessType.FIELD)
53
@XmlType(name = "TEnviNFe", propOrder = {
54
    "idLote",
55
    "indSinc",
56
    "nFe"
57
})
58
public class TEnviNFe {
59
 
60
    @XmlElement(required = true)
61
    protected String idLote;
62
    @XmlElement(required = true)
63
    protected String indSinc;
64
    @XmlElement(name = "NFe", required = true)
65
    protected List<TNFe> nFe;
66
    @XmlAttribute(name = "versao", required = true)
67
    protected String versao;
68
 
69
    /**
70
     * Obt�m o valor da propriedade idLote.
71
     *
72
     * @return
73
     *     possible object is
74
     *     {@link String }
75
     *    
76
     */
77
    public String getIdLote() {
78
        return idLote;
79
    }
80
 
81
    /**
82
     * Define o valor da propriedade idLote.
83
     *
84
     * @param value
85
     *     allowed object is
86
     *     {@link String }
87
     *    
88
     */
89
    public void setIdLote(String value) {
90
        this.idLote = value;
91
    }
92
 
93
    /**
94
     * Obt�m o valor da propriedade indSinc.
95
     *
96
     * @return
97
     *     possible object is
98
     *     {@link String }
99
     *    
100
     */
101
    public String getIndSinc() {
102
        return indSinc;
103
    }
104
 
105
    /**
106
     * Define o valor da propriedade indSinc.
107
     *
108
     * @param value
109
     *     allowed object is
110
     *     {@link String }
111
     *    
112
     */
113
    public void setIndSinc(String value) {
114
        this.indSinc = value;
115
    }
116
 
117
    /**
118
     * Gets the value of the nFe property.
119
     *
120
     * <p>
121
     * This accessor method returns a reference to the live list,
122
     * not a snapshot. Therefore any modification you make to the
123
     * returned list will be present inside the JAXB object.
124
     * This is why there is not a <CODE>set</CODE> method for the nFe property.
125
     *
126
     * <p>
127
     * For example, to add a new item, do as follows:
128
     * <pre>
129
     *    getNFe().add(newItem);
130
     * </pre>
131
     *
132
     *
133
     * <p>
134
     * Objects of the following type(s) are allowed in the list
135
     * {@link TNFe }
136
     *
137
     *
138
     */
139
    public List<TNFe> getNFe() {
140
        if (nFe == null) {
141
            nFe = new ArrayList<TNFe>();
142
        }
143
        return this.nFe;
144
    }
145
 
146
    /**
147
     * Obt�m o valor da propriedade versao.
148
     *
149
     * @return
150
     *     possible object is
151
     *     {@link String }
152
     *    
153
     */
154
    public String getVersao() {
155
        return versao;
156
    }
157
 
158
    /**
159
     * Define o valor da propriedade versao.
160
     *
161
     * @param value
162
     *     allowed object is
163
     *     {@link String }
164
     *    
165
     */
166
    public void setVersao(String value) {
167
        this.versao = value;
168
    }
169
 
170
}