Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 695 | blopes | 1 | |
| 2 | package br.com.swconsultoria.nfe.schema_4.retEnviNFe; |
||
| 3 | |||
| 4 | import javax.xml.bind.annotation.XmlAccessType; |
||
| 5 | import javax.xml.bind.annotation.XmlAccessorType; |
||
| 6 | import javax.xml.bind.annotation.XmlElement; |
||
| 7 | import javax.xml.bind.annotation.XmlType; |
||
| 8 | |||
| 9 | |||
| 10 | /** |
||
| 11 | * Grupo de informações do responsável técnico pelo sistema de emissão de DF-e |
||
| 12 | * |
||
| 13 | * <p>Classe Java de TInfRespTec complex type. |
||
| 14 | * |
||
| 15 | * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. |
||
| 16 | * |
||
| 17 | * <pre> |
||
| 18 | * <complexType name="TInfRespTec"> |
||
| 19 | * <complexContent> |
||
| 20 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
||
| 21 | * <sequence> |
||
| 22 | * <element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpjOpc"/> |
||
| 23 | * <element name="xContato"> |
||
| 24 | * <simpleType> |
||
| 25 | * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> |
||
| 26 | * <maxLength value="60"/> |
||
| 27 | * <minLength value="2"/> |
||
| 28 | * </restriction> |
||
| 29 | * </simpleType> |
||
| 30 | * </element> |
||
| 31 | * <element name="email"> |
||
| 32 | * <simpleType> |
||
| 33 | * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> |
||
| 34 | * <whiteSpace value="preserve"/> |
||
| 35 | * <minLength value="6"/> |
||
| 36 | * <maxLength value="60"/> |
||
| 37 | * </restriction> |
||
| 38 | * </simpleType> |
||
| 39 | * </element> |
||
| 40 | * <element name="fone"> |
||
| 41 | * <simpleType> |
||
| 42 | * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
||
| 43 | * <whiteSpace value="preserve"/> |
||
| 44 | * <pattern value="[0-9]{6,14}"/> |
||
| 45 | * </restriction> |
||
| 46 | * </simpleType> |
||
| 47 | * </element> |
||
| 48 | * <sequence minOccurs="0"> |
||
| 49 | * <element name="idCSRT"> |
||
| 50 | * <simpleType> |
||
| 51 | * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
||
| 52 | * <whiteSpace value="preserve"/> |
||
| 53 | * <pattern value="[0-9]{2}"/> |
||
| 54 | * </restriction> |
||
| 55 | * </simpleType> |
||
| 56 | * </element> |
||
| 57 | * <element name="hashCSRT"> |
||
| 58 | * <simpleType> |
||
| 59 | * <restriction base="{http://www.w3.org/2001/XMLSchema}base64Binary"> |
||
| 60 | * <length value="20"/> |
||
| 61 | * </restriction> |
||
| 62 | * </simpleType> |
||
| 63 | * </element> |
||
| 64 | * </sequence> |
||
| 65 | * </sequence> |
||
| 66 | * </restriction> |
||
| 67 | * </complexContent> |
||
| 68 | * </complexType> |
||
| 69 | * </pre> |
||
| 70 | * |
||
| 71 | * |
||
| 72 | */ |
||
| 73 | @XmlAccessorType(XmlAccessType.FIELD) |
||
| 74 | @XmlType(name = "TInfRespTec", namespace = "http://www.portalfiscal.inf.br/nfe", propOrder = { |
||
| 75 | "cnpj", |
||
| 76 | "xContato", |
||
| 77 | "email", |
||
| 78 | "fone", |
||
| 79 | "idCSRT", |
||
| 80 | "hashCSRT" |
||
| 81 | }) |
||
| 82 | public class TInfRespTec { |
||
| 83 | |||
| 84 | @XmlElement(name = "CNPJ", namespace = "http://www.portalfiscal.inf.br/nfe", required = true) |
||
| 85 | protected String cnpj; |
||
| 86 | @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true) |
||
| 87 | protected String xContato; |
||
| 88 | @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true) |
||
| 89 | protected String email; |
||
| 90 | @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true) |
||
| 91 | protected String fone; |
||
| 92 | @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe") |
||
| 93 | protected String idCSRT; |
||
| 94 | @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe") |
||
| 95 | protected byte[] hashCSRT; |
||
| 96 | |||
| 97 | /** |
||
| 98 | * Obtém o valor da propriedade cnpj. |
||
| 99 | * |
||
| 100 | * @return |
||
| 101 | * possible object is |
||
| 102 | * {@link String } |
||
| 103 | * |
||
| 104 | */ |
||
| 105 | public String getCNPJ() { |
||
| 106 | return cnpj; |
||
| 107 | } |
||
| 108 | |||
| 109 | /** |
||
| 110 | * Define o valor da propriedade cnpj. |
||
| 111 | * |
||
| 112 | * @param value |
||
| 113 | * allowed object is |
||
| 114 | * {@link String } |
||
| 115 | * |
||
| 116 | */ |
||
| 117 | public void setCNPJ(String value) { |
||
| 118 | this.cnpj = value; |
||
| 119 | } |
||
| 120 | |||
| 121 | /** |
||
| 122 | * Obtém o valor da propriedade xContato. |
||
| 123 | * |
||
| 124 | * @return |
||
| 125 | * possible object is |
||
| 126 | * {@link String } |
||
| 127 | * |
||
| 128 | */ |
||
| 129 | public String getXContato() { |
||
| 130 | return xContato; |
||
| 131 | } |
||
| 132 | |||
| 133 | /** |
||
| 134 | * Define o valor da propriedade xContato. |
||
| 135 | * |
||
| 136 | * @param value |
||
| 137 | * allowed object is |
||
| 138 | * {@link String } |
||
| 139 | * |
||
| 140 | */ |
||
| 141 | public void setXContato(String value) { |
||
| 142 | this.xContato = value; |
||
| 143 | } |
||
| 144 | |||
| 145 | /** |
||
| 146 | * Obtém o valor da propriedade email. |
||
| 147 | * |
||
| 148 | * @return |
||
| 149 | * possible object is |
||
| 150 | * {@link String } |
||
| 151 | * |
||
| 152 | */ |
||
| 153 | public String getEmail() { |
||
| 154 | return email; |
||
| 155 | } |
||
| 156 | |||
| 157 | /** |
||
| 158 | * Define o valor da propriedade email. |
||
| 159 | * |
||
| 160 | * @param value |
||
| 161 | * allowed object is |
||
| 162 | * {@link String } |
||
| 163 | * |
||
| 164 | */ |
||
| 165 | public void setEmail(String value) { |
||
| 166 | this.email = value; |
||
| 167 | } |
||
| 168 | |||
| 169 | /** |
||
| 170 | * Obtém o valor da propriedade fone. |
||
| 171 | * |
||
| 172 | * @return |
||
| 173 | * possible object is |
||
| 174 | * {@link String } |
||
| 175 | * |
||
| 176 | */ |
||
| 177 | public String getFone() { |
||
| 178 | return fone; |
||
| 179 | } |
||
| 180 | |||
| 181 | /** |
||
| 182 | * Define o valor da propriedade fone. |
||
| 183 | * |
||
| 184 | * @param value |
||
| 185 | * allowed object is |
||
| 186 | * {@link String } |
||
| 187 | * |
||
| 188 | */ |
||
| 189 | public void setFone(String value) { |
||
| 190 | this.fone = value; |
||
| 191 | } |
||
| 192 | |||
| 193 | /** |
||
| 194 | * Obtém o valor da propriedade idCSRT. |
||
| 195 | * |
||
| 196 | * @return |
||
| 197 | * possible object is |
||
| 198 | * {@link String } |
||
| 199 | * |
||
| 200 | */ |
||
| 201 | public String getIdCSRT() { |
||
| 202 | return idCSRT; |
||
| 203 | } |
||
| 204 | |||
| 205 | /** |
||
| 206 | * Define o valor da propriedade idCSRT. |
||
| 207 | * |
||
| 208 | * @param value |
||
| 209 | * allowed object is |
||
| 210 | * {@link String } |
||
| 211 | * |
||
| 212 | */ |
||
| 213 | public void setIdCSRT(String value) { |
||
| 214 | this.idCSRT = value; |
||
| 215 | } |
||
| 216 | |||
| 217 | /** |
||
| 218 | * Obtém o valor da propriedade hashCSRT. |
||
| 219 | * |
||
| 220 | * @return |
||
| 221 | * possible object is |
||
| 222 | * byte[] |
||
| 223 | */ |
||
| 224 | public byte[] getHashCSRT() { |
||
| 225 | return hashCSRT; |
||
| 226 | } |
||
| 227 | |||
| 228 | /** |
||
| 229 | * Define o valor da propriedade hashCSRT. |
||
| 230 | * |
||
| 231 | * @param value |
||
| 232 | * allowed object is |
||
| 233 | * byte[] |
||
| 234 | */ |
||
| 235 | public void setHashCSRT(byte[] value) { |
||
| 236 | this.hashCSRT = value; |
||
| 237 | } |
||
| 238 | |||
| 239 | } |