// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.05.03 at 05:21:27 PM BRT // package br.com.caelum.stella.nfe.xsd.recepcao; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Tipo Dados do Endereço do Emitente // 24/10/08 - desmembrado / tamanho mínimo * * <p>Java class for TEnderEmi complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TEnderEmi"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="xLgr"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="2"/> * </restriction> * </simpleType> * </element> * <element name="nro"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="1"/> * </restriction> * </simpleType> * </element> * <element name="xCpl" minOccurs="0"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="1"/> * </restriction> * </simpleType> * </element> * <element name="xBairro"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="2"/> * </restriction> * </simpleType> * </element> * <element name="cMun" type="{http://www.portalfiscal.inf.br/nfe}TCodMunIBGE"/> * <element name="xMun"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="2"/> * </restriction> * </simpleType> * </element> * <element name="UF" type="{http://www.portalfiscal.inf.br/nfe}TUfEmi"/> * <element name="CEP"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <whiteSpace value="preserve"/> * <pattern value="[0-9]{8}"/> * </restriction> * </simpleType> * </element> * <element name="cPais" minOccurs="0"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <enumeration value="1058"/> * </restriction> * </simpleType> * </element> * <element name="xPais" minOccurs="0"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <enumeration value="Brasil"/> * <enumeration value="BRASIL"/> * </restriction> * </simpleType> * </element> * <element name="fone" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <whiteSpace value="preserve"/> * <pattern value="[0-9]{6,14}"/> * </restriction> * </simpleType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TEnderEmi", propOrder = { "xLgr", "nro", "xCpl", "xBairro", "cMun", "xMun", "uf", "cep", "cPais", "xPais", "fone" }) public class TEnderEmi { @XmlElement(required = true) protected String xLgr; @XmlElement(required = true) protected String nro; protected String xCpl; @XmlElement(required = true) protected String xBairro; @XmlElement(required = true) protected String cMun; @XmlElement(required = true) protected String xMun; @XmlElement(name = "UF", required = true) protected TUfEmi uf; @XmlElement(name = "CEP", required = true) protected String cep; protected String cPais; protected String xPais; protected String fone; /** * Gets the value of the xLgr property. * * @return * possible object is * {@link String } * */ public String getXLgr() { return xLgr; } /** * Sets the value of the xLgr property. * * @param value * allowed object is * {@link String } * */ public void setXLgr(String value) { this.xLgr = value; } /** * Gets the value of the nro property. * * @return * possible object is * {@link String } * */ public String getNro() { return nro; } /** * Sets the value of the nro property. * * @param value * allowed object is * {@link String } * */ public void setNro(String value) { this.nro = value; } /** * Gets the value of the xCpl property. * * @return * possible object is * {@link String } * */ public String getXCpl() { return xCpl; } /** * Sets the value of the xCpl property. * * @param value * allowed object is * {@link String } * */ public void setXCpl(String value) { this.xCpl = value; } /** * Gets the value of the xBairro property. * * @return * possible object is * {@link String } * */ public String getXBairro() { return xBairro; } /** * Sets the value of the xBairro property. * * @param value * allowed object is * {@link String } * */ public void setXBairro(String value) { this.xBairro = value; } /** * Gets the value of the cMun property. * * @return * possible object is * {@link String } * */ public String getCMun() { return cMun; } /** * Sets the value of the cMun property. * * @param value * allowed object is * {@link String } * */ public void setCMun(String value) { this.cMun = value; } /** * Gets the value of the xMun property. * * @return * possible object is * {@link String } * */ public String getXMun() { return xMun; } /** * Sets the value of the xMun property. * * @param value * allowed object is * {@link String } * */ public void setXMun(String value) { this.xMun = value; } /** * Gets the value of the uf property. * * @return * possible object is * {@link TUfEmi } * */ public TUfEmi getUF() { return uf; } /** * Sets the value of the uf property. * * @param value * allowed object is * {@link TUfEmi } * */ public void setUF(TUfEmi value) { this.uf = value; } /** * Gets the value of the cep property. * * @return * possible object is * {@link String } * */ public String getCEP() { return cep; } /** * Sets the value of the cep property. * * @param value * allowed object is * {@link String } * */ public void setCEP(String value) { this.cep = value; } /** * Gets the value of the cPais property. * * @return * possible object is * {@link String } * */ public String getCPais() { return cPais; } /** * Sets the value of the cPais property. * * @param value * allowed object is * {@link String } * */ public void setCPais(String value) { this.cPais = value; } /** * Gets the value of the xPais property. * * @return * possible object is * {@link String } * */ public String getXPais() { return xPais; } /** * Sets the value of the xPais property. * * @param value * allowed object is * {@link String } * */ public void setXPais(String value) { this.xPais = value; } /** * Gets the value of the fone property. * * @return * possible object is * {@link String } * */ public String getFone() { return fone; } /** * Sets the value of the fone property. * * @param value * allowed object is * {@link String } * */ public void setFone(String value) { this.fone = value; } }