// // Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.7 // Visite <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen. // Generado el: 2014.09.22 a las 03:26:08 PM CDT // package mx.gob.sat.cfd._3; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * Tipo definido para expresar domicilios o direcciones * * <p>Clase Java para t_UbicacionFiscal complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="t_UbicacionFiscal"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="calle" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <whiteSpace value="collapse"/> * </restriction> * </simpleType> * </attribute> * <attribute name="noExterior"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <whiteSpace value="collapse"/> * </restriction> * </simpleType> * </attribute> * <attribute name="noInterior"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <whiteSpace value="collapse"/> * </restriction> * </simpleType> * </attribute> * <attribute name="colonia"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <whiteSpace value="collapse"/> * </restriction> * </simpleType> * </attribute> * <attribute name="localidad"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <whiteSpace value="collapse"/> * </restriction> * </simpleType> * </attribute> * <attribute name="referencia"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <whiteSpace value="collapse"/> * <minLength value="1"/> * </restriction> * </simpleType> * </attribute> * <attribute name="municipio" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <whiteSpace value="collapse"/> * </restriction> * </simpleType> * </attribute> * <attribute name="estado" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <whiteSpace value="collapse"/> * </restriction> * </simpleType> * </attribute> * <attribute name="pais" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <whiteSpace value="collapse"/> * </restriction> * </simpleType> * </attribute> * <attribute name="codigoPostal" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <whiteSpace value="collapse"/> * <length value="5"/> * </restriction> * </simpleType> * </attribute> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "t_UbicacionFiscal") public class TUbicacionFiscal { @XmlAttribute(name = "calle", required = true) protected String calle; @XmlAttribute(name = "noExterior") protected String noExterior; @XmlAttribute(name = "noInterior") protected String noInterior; @XmlAttribute(name = "colonia") protected String colonia; @XmlAttribute(name = "localidad") protected String localidad; @XmlAttribute(name = "referencia") protected String referencia; @XmlAttribute(name = "municipio", required = true) protected String municipio; @XmlAttribute(name = "estado", required = true) protected String estado; @XmlAttribute(name = "pais", required = true) protected String pais; @XmlAttribute(name = "codigoPostal", required = true) protected String codigoPostal; /** * Obtiene el valor de la propiedad calle. * * @return * possible object is * {@link String } * */ public String getCalle() { return calle; } /** * Define el valor de la propiedad calle. * * @param value * allowed object is * {@link String } * */ public void setCalle(String value) { this.calle = value; } /** * Obtiene el valor de la propiedad noExterior. * * @return * possible object is * {@link String } * */ public String getNoExterior() { return noExterior; } /** * Define el valor de la propiedad noExterior. * * @param value * allowed object is * {@link String } * */ public void setNoExterior(String value) { this.noExterior = value; } /** * Obtiene el valor de la propiedad noInterior. * * @return * possible object is * {@link String } * */ public String getNoInterior() { return noInterior; } /** * Define el valor de la propiedad noInterior. * * @param value * allowed object is * {@link String } * */ public void setNoInterior(String value) { this.noInterior = value; } /** * Obtiene el valor de la propiedad colonia. * * @return * possible object is * {@link String } * */ public String getColonia() { return colonia; } /** * Define el valor de la propiedad colonia. * * @param value * allowed object is * {@link String } * */ public void setColonia(String value) { this.colonia = value; } /** * Obtiene el valor de la propiedad localidad. * * @return * possible object is * {@link String } * */ public String getLocalidad() { return localidad; } /** * Define el valor de la propiedad localidad. * * @param value * allowed object is * {@link String } * */ public void setLocalidad(String value) { this.localidad = value; } /** * Obtiene el valor de la propiedad referencia. * * @return * possible object is * {@link String } * */ public String getReferencia() { return referencia; } /** * Define el valor de la propiedad referencia. * * @param value * allowed object is * {@link String } * */ public void setReferencia(String value) { this.referencia = value; } /** * Obtiene el valor de la propiedad municipio. * * @return * possible object is * {@link String } * */ public String getMunicipio() { return municipio; } /** * Define el valor de la propiedad municipio. * * @param value * allowed object is * {@link String } * */ public void setMunicipio(String value) { this.municipio = value; } /** * Obtiene el valor de la propiedad estado. * * @return * possible object is * {@link String } * */ public String getEstado() { return estado; } /** * Define el valor de la propiedad estado. * * @param value * allowed object is * {@link String } * */ public void setEstado(String value) { this.estado = value; } /** * Obtiene el valor de la propiedad pais. * * @return * possible object is * {@link String } * */ public String getPais() { return pais; } /** * Define el valor de la propiedad pais. * * @param value * allowed object is * {@link String } * */ public void setPais(String value) { this.pais = value; } /** * Obtiene el valor de la propiedad codigoPostal. * * @return * possible object is * {@link String } * */ public String getCodigoPostal() { return codigoPostal; } /** * Define el valor de la propiedad codigoPostal. * * @param value * allowed object is * {@link String } * */ public void setCodigoPostal(String value) { this.codigoPostal = value; } }