Application Service
- * @author dcruz
- *
- *
- */
-@Local
-public interface PortalService {
-
- /**
- * Devuelve una {@link Collection} que representan el tipo de documentacion
- * @return {@link Collection} de {@link Tgenecatalogdetail}
- */
- CollectionClase Java para BusquedaPorCedula complex type. - * - *
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. - * - *
- * <complexType name="BusquedaPorCedula">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="Cedula" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Usuario" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Contrasenia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "BusquedaPorCedula", propOrder = {
- "cedula",
- "usuario",
- "contrasenia"
-})
-public class BusquedaPorCedula {
-
- @XmlElement(name = "Cedula")
- protected String cedula;
- @XmlElement(name = "Usuario")
- protected String usuario;
- @XmlElement(name = "Contrasenia")
- protected String contrasenia;
-
- /**
- * Obtiene el valor de la propiedad cedula.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCedula() {
- return cedula;
- }
-
- /**
- * Define el valor de la propiedad cedula.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCedula(String value) {
- this.cedula = value;
- }
-
- /**
- * Obtiene el valor de la propiedad usuario.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getUsuario() {
- return usuario;
- }
-
- /**
- * Define el valor de la propiedad usuario.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setUsuario(String value) {
- this.usuario = value;
- }
-
- /**
- * Obtiene el valor de la propiedad contrasenia.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getContrasenia() {
- return contrasenia;
- }
-
- /**
- * Define el valor de la propiedad contrasenia.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setContrasenia(String value) {
- this.contrasenia = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/BusquedaPorCedulaResponse.java.svn-base b/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/BusquedaPorCedulaResponse.java.svn-base
deleted file mode 100644
index d621947..0000000
--- a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/BusquedaPorCedulaResponse.java.svn-base
+++ /dev/null
@@ -1,62 +0,0 @@
-
-package ec.gob.registrocivil.consultacedula;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Clase Java para BusquedaPorCedulaResponse complex type. - * - *
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. - * - *
- * <complexType name="BusquedaPorCedulaResponse">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="return" type="{http://www.registrocivil.gob.ec/ConsultaCedula}cedula" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "BusquedaPorCedulaResponse", propOrder = {
- "_return"
-})
-public class BusquedaPorCedulaResponse {
-
- @XmlElement(name = "return")
- protected Cedula _return;
-
- /**
- * Obtiene el valor de la propiedad return.
- *
- * @return
- * possible object is
- * {@link Cedula }
- *
- */
- public Cedula getReturn() {
- return _return;
- }
-
- /**
- * Define el valor de la propiedad return.
- *
- * @param value
- * allowed object is
- * {@link Cedula }
- *
- */
- public void setReturn(Cedula value) {
- this._return = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/Cedula.java.svn-base b/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/Cedula.java.svn-base
deleted file mode 100644
index 85f5c0e..0000000
--- a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/Cedula.java.svn-base
+++ /dev/null
@@ -1,622 +0,0 @@
-
-package ec.gob.registrocivil.consultacedula;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Clase Java para cedula complex type. - * - *
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. - * - *
- * <complexType name="cedula">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="CalleDomicilio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Cedula" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="CodigoError" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="CondicionCedulado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Conyuge" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Domicilio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="EstadoCivil" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="FechaCedulacion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="FechaNacimiento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="FirmaElectronica" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Genero" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="IndividualDactilar" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Instruccion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="LugarNacimiento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Nacionalidad" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="NombreMadre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="NombrePadre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="NumeroDomicilio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Profesion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cedula", propOrder = {
- "calleDomicilio",
- "cedula",
- "codigoError",
- "condicionCedulado",
- "conyuge",
- "domicilio",
- "error",
- "estadoCivil",
- "fechaCedulacion",
- "fechaNacimiento",
- "firmaElectronica",
- "genero",
- "individualDactilar",
- "instruccion",
- "lugarNacimiento",
- "nacionalidad",
- "nombreMadre",
- "nombrePadre",
- "nombre",
- "numeroDomicilio",
- "profesion"
-})
-public class Cedula {
-
- @XmlElement(name = "CalleDomicilio")
- protected String calleDomicilio;
- @XmlElement(name = "Cedula")
- protected String cedula;
- @XmlElement(name = "CodigoError")
- protected String codigoError;
- @XmlElement(name = "CondicionCedulado")
- protected String condicionCedulado;
- @XmlElement(name = "Conyuge")
- protected String conyuge;
- @XmlElement(name = "Domicilio")
- protected String domicilio;
- @XmlElement(name = "Error")
- protected String error;
- @XmlElement(name = "EstadoCivil")
- protected String estadoCivil;
- @XmlElement(name = "FechaCedulacion")
- protected String fechaCedulacion;
- @XmlElement(name = "FechaNacimiento")
- protected String fechaNacimiento;
- @XmlElement(name = "FirmaElectronica")
- protected String firmaElectronica;
- @XmlElement(name = "Genero")
- protected String genero;
- @XmlElement(name = "IndividualDactilar")
- protected String individualDactilar;
- @XmlElement(name = "Instruccion")
- protected String instruccion;
- @XmlElement(name = "LugarNacimiento")
- protected String lugarNacimiento;
- @XmlElement(name = "Nacionalidad")
- protected String nacionalidad;
- @XmlElement(name = "NombreMadre")
- protected String nombreMadre;
- @XmlElement(name = "NombrePadre")
- protected String nombrePadre;
- @XmlElement(name = "Nombre")
- protected String nombre;
- @XmlElement(name = "NumeroDomicilio")
- protected String numeroDomicilio;
- @XmlElement(name = "Profesion")
- protected String profesion;
-
- /**
- * Obtiene el valor de la propiedad calleDomicilio.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCalleDomicilio() {
- return calleDomicilio;
- }
-
- /**
- * Define el valor de la propiedad calleDomicilio.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCalleDomicilio(String value) {
- this.calleDomicilio = value;
- }
-
- /**
- * Obtiene el valor de la propiedad cedula.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCedula() {
- return cedula;
- }
-
- /**
- * Define el valor de la propiedad cedula.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCedula(String value) {
- this.cedula = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codigoError.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodigoError() {
- return codigoError;
- }
-
- /**
- * Define el valor de la propiedad codigoError.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodigoError(String value) {
- this.codigoError = value;
- }
-
- /**
- * Obtiene el valor de la propiedad condicionCedulado.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCondicionCedulado() {
- return condicionCedulado;
- }
-
- /**
- * Define el valor de la propiedad condicionCedulado.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCondicionCedulado(String value) {
- this.condicionCedulado = value;
- }
-
- /**
- * Obtiene el valor de la propiedad conyuge.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getConyuge() {
- return conyuge;
- }
-
- /**
- * Define el valor de la propiedad conyuge.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setConyuge(String value) {
- this.conyuge = value;
- }
-
- /**
- * Obtiene el valor de la propiedad domicilio.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDomicilio() {
- return domicilio;
- }
-
- /**
- * Define el valor de la propiedad domicilio.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDomicilio(String value) {
- this.domicilio = value;
- }
-
- /**
- * Obtiene el valor de la propiedad error.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getError() {
- return error;
- }
-
- /**
- * Define el valor de la propiedad error.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setError(String value) {
- this.error = value;
- }
-
- /**
- * Obtiene el valor de la propiedad estadoCivil.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getEstadoCivil() {
- return estadoCivil;
- }
-
- /**
- * Define el valor de la propiedad estadoCivil.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setEstadoCivil(String value) {
- this.estadoCivil = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaCedulacion.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaCedulacion() {
- return fechaCedulacion;
- }
-
- /**
- * Define el valor de la propiedad fechaCedulacion.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaCedulacion(String value) {
- this.fechaCedulacion = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaNacimiento.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaNacimiento() {
- return fechaNacimiento;
- }
-
- /**
- * Define el valor de la propiedad fechaNacimiento.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaNacimiento(String value) {
- this.fechaNacimiento = value;
- }
-
- /**
- * Obtiene el valor de la propiedad firmaElectronica.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFirmaElectronica() {
- return firmaElectronica;
- }
-
- /**
- * Define el valor de la propiedad firmaElectronica.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFirmaElectronica(String value) {
- this.firmaElectronica = value;
- }
-
- /**
- * Obtiene el valor de la propiedad genero.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getGenero() {
- return genero;
- }
-
- /**
- * Define el valor de la propiedad genero.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setGenero(String value) {
- this.genero = value;
- }
-
- /**
- * Obtiene el valor de la propiedad individualDactilar.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getIndividualDactilar() {
- return individualDactilar;
- }
-
- /**
- * Define el valor de la propiedad individualDactilar.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setIndividualDactilar(String individualDactilar) {
- this.individualDactilar = individualDactilar;
- }
-
- /**
- * Obtiene el valor de la propiedad instruccion.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getInstruccion() {
- return instruccion;
- }
-
- /**
- * Define el valor de la propiedad instruccion.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setInstruccion(String value) {
- this.instruccion = value;
- }
-
- /**
- * Obtiene el valor de la propiedad lugarNacimiento.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getLugarNacimiento() {
- return lugarNacimiento;
- }
-
- /**
- * Define el valor de la propiedad lugarNacimiento.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setLugarNacimiento(String value) {
- this.lugarNacimiento = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nacionalidad.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNacionalidad() {
- return nacionalidad;
- }
-
- /**
- * Define el valor de la propiedad nacionalidad.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNacionalidad(String value) {
- this.nacionalidad = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nombreMadre.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombreMadre() {
- return nombreMadre;
- }
-
- /**
- * Define el valor de la propiedad nombreMadre.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombreMadre(String value) {
- this.nombreMadre = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nombrePadre.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombrePadre() {
- return nombrePadre;
- }
-
- /**
- * Define el valor de la propiedad nombrePadre.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombrePadre(String value) {
- this.nombrePadre = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nombre.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombre() {
- return nombre;
- }
-
- /**
- * Define el valor de la propiedad nombre.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombre(String value) {
- this.nombre = value;
- }
-
- /**
- * Obtiene el valor de la propiedad numeroDomicilio.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNumeroDomicilio() {
- return numeroDomicilio;
- }
-
- /**
- * Define el valor de la propiedad numeroDomicilio.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNumeroDomicilio(String value) {
- this.numeroDomicilio = value;
- }
-
- /**
- * Obtiene el valor de la propiedad profesion.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getProfesion() {
- return profesion;
- }
-
- /**
- * Define el valor de la propiedad profesion.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setProfesion(String value) {
- this.profesion = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/ObjectFactory.java.svn-base b/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/ObjectFactory.java.svn-base
deleted file mode 100644
index 1399799..0000000
--- a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/ObjectFactory.java.svn-base
+++ /dev/null
@@ -1,115 +0,0 @@
-
-package ec.gob.registrocivil.consultacedula;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the ec.gob.registrocivil.consultacedula package.
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _BusquedaPorCedula_QNAME = new QName("http://www.registrocivil.gob.ec/ConsultaCedula", "BusquedaPorCedula");
- private final static QName _WsUpResponse_QNAME = new QName("http://www.registrocivil.gob.ec/ConsultaCedula", "WsUpResponse");
- private final static QName _BusquedaPorCedulaResponse_QNAME = new QName("http://www.registrocivil.gob.ec/ConsultaCedula", "BusquedaPorCedulaResponse");
- private final static QName _WsUp_QNAME = new QName("http://www.registrocivil.gob.ec/ConsultaCedula", "WsUp");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: ec.gob.registrocivil.consultacedula
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link BusquedaPorCedula }
- *
- */
- public BusquedaPorCedula createBusquedaPorCedula() {
- return new BusquedaPorCedula();
- }
-
- /**
- * Create an instance of {@link WsUp }
- *
- */
- public WsUp createWsUp() {
- return new WsUp();
- }
-
- /**
- * Create an instance of {@link BusquedaPorCedulaResponse }
- *
- */
- public BusquedaPorCedulaResponse createBusquedaPorCedulaResponse() {
- return new BusquedaPorCedulaResponse();
- }
-
- /**
- * Create an instance of {@link WsUpResponse }
- *
- */
- public WsUpResponse createWsUpResponse() {
- return new WsUpResponse();
- }
-
- /**
- * Create an instance of {@link Cedula }
- *
- */
- public Cedula createCedula() {
- return new Cedula();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link BusquedaPorCedula }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://www.registrocivil.gob.ec/ConsultaCedula", name = "BusquedaPorCedula")
- public JAXBElement Clase Java para WsUp complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para WsUpResponse complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para actividadEconomica complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para agenteRetencion complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para contador complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para contribuyente complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para contribuyenteCompleto complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para contribuyenteOnLine complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para estructuraOrganizacional complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para listaBlanca complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _ObtenerSimple_QNAME = new QName("http://sri.gov.ec/wsConsultaContribuyente", "obtenerSimple");
- private final static QName _ObtenerCompletoResponse_QNAME = new QName("http://sri.gov.ec/wsConsultaContribuyente", "obtenerCompletoResponse");
- private final static QName _ObtenerCompleto_QNAME = new QName("http://sri.gov.ec/wsConsultaContribuyente", "obtenerCompleto");
- private final static QName _ObtenerDatos_QNAME = new QName("http://sri.gov.ec/wsConsultaContribuyente", "obtenerDatos");
- private final static QName _ObtenerSimpleResponse_QNAME = new QName("http://sri.gov.ec/wsConsultaContribuyente", "obtenerSimpleResponse");
- private final static QName _ObtenerDatosResponse_QNAME = new QName("http://sri.gov.ec/wsConsultaContribuyente", "obtenerDatosResponse");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: ec.gov.sri.wsconsultacontribuyente
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link ObtenerSimple }
- *
- */
- public ObtenerSimple createObtenerSimple() {
- return new ObtenerSimple();
- }
-
- /**
- * Create an instance of {@link ObtenerDatosResponse }
- *
- */
- public ObtenerDatosResponse createObtenerDatosResponse() {
- return new ObtenerDatosResponse();
- }
-
- /**
- * Create an instance of {@link ObtenerCompletoResponse }
- *
- */
- public ObtenerCompletoResponse createObtenerCompletoResponse() {
- return new ObtenerCompletoResponse();
- }
-
- /**
- * Create an instance of {@link ObtenerSimpleResponse }
- *
- */
- public ObtenerSimpleResponse createObtenerSimpleResponse() {
- return new ObtenerSimpleResponse();
- }
-
- /**
- * Create an instance of {@link ObtenerDatos }
- *
- */
- public ObtenerDatos createObtenerDatos() {
- return new ObtenerDatos();
- }
-
- /**
- * Create an instance of {@link ObtenerCompleto }
- *
- */
- public ObtenerCompleto createObtenerCompleto() {
- return new ObtenerCompleto();
- }
-
- /**
- * Create an instance of {@link ContribuyenteOnLine }
- *
- */
- public ContribuyenteOnLine createContribuyenteOnLine() {
- return new ContribuyenteOnLine();
- }
-
- /**
- * Create an instance of {@link AgenteRetencion }
- *
- */
- public AgenteRetencion createAgenteRetencion() {
- return new AgenteRetencion();
- }
-
- /**
- * Create an instance of {@link EstructuraOrganizacional }
- *
- */
- public EstructuraOrganizacional createEstructuraOrganizacional() {
- return new EstructuraOrganizacional();
- }
-
- /**
- * Create an instance of {@link ListaBlanca }
- *
- */
- public ListaBlanca createListaBlanca() {
- return new ListaBlanca();
- }
-
- /**
- * Create an instance of {@link RepresentanteLegal }
- *
- */
- public RepresentanteLegal createRepresentanteLegal() {
- return new RepresentanteLegal();
- }
-
- /**
- * Create an instance of {@link Contribuyente }
- *
- */
- public Contribuyente createContribuyente() {
- return new Contribuyente();
- }
-
- /**
- * Create an instance of {@link Contador }
- *
- */
- public Contador createContador() {
- return new Contador();
- }
-
- /**
- * Create an instance of {@link UbicacionGeografica }
- *
- */
- public UbicacionGeografica createUbicacionGeografica() {
- return new UbicacionGeografica();
- }
-
- /**
- * Create an instance of {@link ContribuyenteCompleto }
- *
- */
- public ContribuyenteCompleto createContribuyenteCompleto() {
- return new ContribuyenteCompleto();
- }
-
- /**
- * Create an instance of {@link ActividadEconomica }
- *
- */
- public ActividadEconomica createActividadEconomica() {
- return new ActividadEconomica();
- }
-
- /**
- * Create an instance of {@link TipoContribuyente }
- *
- */
- public TipoContribuyente createTipoContribuyente() {
- return new TipoContribuyente();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerSimple }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://sri.gov.ec/wsConsultaContribuyente", name = "obtenerSimple")
- public JAXBElement Clase Java para obtenerCompleto complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para obtenerCompletoResponse complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para obtenerDatos complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para obtenerDatosResponse complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para obtenerSimple complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para obtenerSimpleResponse complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para representanteLegal complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para tipoContribuyente complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para ubicacionGeografica complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para consultarCedula complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para consultarCedulaResponse complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _ConsultarCedulaResponse_QNAME = new QName("http://cedula.snap.webservices.fp.com/", "consultarCedulaResponse");
- private final static QName _ConsultarCedula_QNAME = new QName("http://cedula.snap.webservices.fp.com/", "consultarCedula");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.fp.webservices.snap.cedula
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link ConsultarCedulaResponse }
- *
- */
- public ConsultarCedulaResponse createConsultarCedulaResponse() {
- return new ConsultarCedulaResponse();
- }
-
- /**
- * Create an instance of {@link ConsultarCedula }
- *
- */
- public ConsultarCedula createConsultarCedula() {
- return new ConsultarCedula();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ConsultarCedulaResponse }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://cedula.snap.webservices.fp.com/", name = "consultarCedulaResponse")
- public JAXBElement Clase Java para consultarRuc complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * Clase Java para consultarRucResponse complex type.
- *
- * El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
- *
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _ConsultarRuc_QNAME = new QName("http://ruc.snap.webservices.fp.com/", "consultarRuc");
- private final static QName _ConsultarRucResponse_QNAME = new QName("http://ruc.snap.webservices.fp.com/", "consultarRucResponse");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.fp.webservices.snap.ruc
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link ConsultarRucResponse }
- *
- */
- public ConsultarRucResponse createConsultarRucResponse() {
- return new ConsultarRucResponse();
- }
-
- /**
- * Create an instance of {@link ConsultarRuc }
- *
- */
- public ConsultarRuc createConsultarRuc() {
- return new ConsultarRuc();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ConsultarRuc }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://ruc.snap.webservices.fp.com/", name = "consultarRuc")
- public JAXBElement
- * <complexType name="WsUp">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "WsUp")
-public class WsUp {
-
-
-}
diff --git a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/WsUpResponse.java.svn-base b/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/WsUpResponse.java.svn-base
deleted file mode 100644
index e09995e..0000000
--- a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/WsUpResponse.java.svn-base
+++ /dev/null
@@ -1,62 +0,0 @@
-
-package ec.gob.registrocivil.consultacedula;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="WsUpResponse">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="return" type="{http://www.registrocivil.gob.ec/ConsultaCedula}cedula" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "WsUpResponse", propOrder = {
- "_return"
-})
-public class WsUpResponse {
-
- @XmlElement(name = "return")
- protected Cedula _return;
-
- /**
- * Obtiene el valor de la propiedad return.
- *
- * @return
- * possible object is
- * {@link Cedula }
- *
- */
- public Cedula getReturn() {
- return _return;
- }
-
- /**
- * Define el valor de la propiedad return.
- *
- * @param value
- * allowed object is
- * {@link Cedula }
- *
- */
- public void setReturn(Cedula value) {
- this._return = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/package-info.java.svn-base b/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/package-info.java.svn-base
deleted file mode 100644
index e344919..0000000
--- a/ejb/src/main/java/ec/gob/registrocivil/consultacedula/.svn/text-base/package-info.java.svn-base
+++ /dev/null
@@ -1,2 +0,0 @@
-@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.registrocivil.gob.ec/ConsultaCedula")
-package ec.gob.registrocivil.consultacedula;
diff --git a/ejb/src/main/java/ec/gov/.svn/entries b/ejb/src/main/java/ec/gov/.svn/entries
deleted file mode 100644
index 1643886..0000000
--- a/ejb/src/main/java/ec/gov/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/main/java/ec/gov
-svn://172.17.26.185/COMACO
-
-
-
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-sri
-dir
-
diff --git a/ejb/src/main/java/ec/gov/sri/.svn/entries b/ejb/src/main/java/ec/gov/sri/.svn/entries
deleted file mode 100644
index 66b868f..0000000
--- a/ejb/src/main/java/ec/gov/sri/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/main/java/ec/gov/sri
-svn://172.17.26.185/COMACO
-
-
-
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-wsconsultacontribuyente
-dir
-
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/entries b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/entries
deleted file mode 100644
index 3da4614..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/entries
+++ /dev/null
@@ -1,674 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente
-svn://172.17.26.185/COMACO
-
-
-
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-ContribuyenteOnLine.java
-file
-
-
-
-
-2022-07-28T03:45:34.645066Z
-c381f60cd2c1f461f0eddda6312622c4
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-8032
-
-ObtenerCompleto.java
-file
-
-
-
-
-2022-07-28T03:45:34.645066Z
-0571c28cb00b2cf2d13c75eb99f8ea58
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-2039
-
-UbicacionGeografica.java
-file
-
-
-
-
-2022-07-28T03:45:34.646066Z
-621de317c251508845b4690059cfa5f3
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-6982
-
-ActividadEconomica.java
-file
-
-
-
-
-2022-07-28T03:45:34.646066Z
-ea633b8001712b88b0bb455c18b5e23b
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-9144
-
-ObtenerSimple.java
-file
-
-
-
-
-2022-07-28T03:45:34.647066Z
-3ae6511eef4fd9a2d99a8a3996a9cf81
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-2031
-
-ObtenerDatosResponse.java
-file
-
-
-
-
-2022-07-28T03:45:34.647066Z
-dadbb9256d602db6fe0c8aeca4dea56d
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1557
-
-Contador.java
-file
-
-
-
-
-2022-07-28T03:45:34.648066Z
-e19621ed87870c389e42539b7ce7e8f9
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-2511
-
-AgenteRetencion.java
-file
-
-
-
-
-2022-07-28T03:45:34.648066Z
-bdde2d99c44487e9fe49d174c14a23e3
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1368
-
-ListaBlanca.java
-file
-
-
-
-
-2022-07-28T03:45:34.649066Z
-79bc2340c9ca531ffd36a6b17b2d0411
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1352
-
-ObtenerCompletoResponse.java
-file
-
-
-
-
-2022-07-28T03:45:34.649066Z
-23c5747bf01fd6b0e8d8401903a8667e
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1581
-
-EstructuraOrganizacional.java
-file
-
-
-
-
-2022-07-28T03:45:34.650066Z
-3b6f959f52c6b7f366d16243f21fad5c
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-3876
-
-RepresentanteLegal.java
-file
-
-
-
-
-2022-07-28T03:45:34.651066Z
-b7273495d65feabc5f418dec47ef12e1
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-2641
-
-package-info.java
-file
-
-
-
-
-2022-07-28T03:45:34.650066Z
-91f869035576c860aa6db60950ce64d8
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-138
-
-TipoContribuyente.java
-file
-
-
-
-
-2022-07-28T03:45:34.651066Z
-a8a5f36d600c7a88754ca520b4f31193
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-4368
-
-ObtenerSimpleResponse.java
-file
-
-
-
-
-2022-07-28T03:45:34.652066Z
-7cdc4ea126d8fe032dff6edd1917c295
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1525
-
-ObtenerDatos.java
-file
-
-
-
-
-2022-07-28T03:45:34.652066Z
-5a757561b87c4e599486d53d993fd787
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1383
-
-Contribuyente.java
-file
-
-
-
-
-2022-07-28T03:45:34.653066Z
-0c7f76c6502fab6676af8b6e4b1c3438
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-10451
-
-ContribuyenteCompleto.java
-file
-
-
-
-
-2022-07-28T03:45:34.653066Z
-5a1b8832944c5d4372dd3857e195fa29
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-15570
-
-ObjectFactory.java
-file
-
-
-
-
-2022-07-28T03:45:34.653066Z
-8097383c1475af77c91a9ea62a0eb478
-2015-01-22T10:30:09.703574Z
-3790
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-7628
-
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ActividadEconomica.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ActividadEconomica.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ActividadEconomica.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/AgenteRetencion.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/AgenteRetencion.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/AgenteRetencion.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/Contador.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/Contador.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/Contador.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/Contribuyente.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/Contribuyente.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/Contribuyente.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ContribuyenteCompleto.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ContribuyenteCompleto.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ContribuyenteCompleto.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ContribuyenteOnLine.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ContribuyenteOnLine.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ContribuyenteOnLine.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/EstructuraOrganizacional.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/EstructuraOrganizacional.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/EstructuraOrganizacional.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ListaBlanca.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ListaBlanca.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ListaBlanca.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObjectFactory.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObjectFactory.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObjectFactory.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerCompleto.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerCompleto.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerCompleto.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerCompletoResponse.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerCompletoResponse.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerCompletoResponse.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerDatos.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerDatos.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerDatos.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerDatosResponse.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerDatosResponse.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerDatosResponse.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerSimple.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerSimple.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerSimple.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerSimpleResponse.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerSimpleResponse.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/ObtenerSimpleResponse.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/RepresentanteLegal.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/RepresentanteLegal.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/RepresentanteLegal.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/TipoContribuyente.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/TipoContribuyente.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/TipoContribuyente.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/UbicacionGeografica.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/UbicacionGeografica.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/UbicacionGeografica.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/package-info.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/package-info.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/prop-base/package-info.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ActividadEconomica.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ActividadEconomica.java.svn-base
deleted file mode 100644
index 6b3197f..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ActividadEconomica.java.svn-base
+++ /dev/null
@@ -1,384 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="actividadEconomica">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="actividadGeneral" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codN1Familia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codN2Grupo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codN3SubGrupo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codN4Clase" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codN5SubClase" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codN6Actividad" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="n1Familia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="n2Grupo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="n3SubGrupo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="n4Clase" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="n5SubClase" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="n6Actividad" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "actividadEconomica", propOrder = {
- "actividadGeneral",
- "codN1Familia",
- "codN2Grupo",
- "codN3SubGrupo",
- "codN4Clase",
- "codN5SubClase",
- "codN6Actividad",
- "n1Familia",
- "n2Grupo",
- "n3SubGrupo",
- "n4Clase",
- "n5SubClase",
- "n6Actividad"
-})
-public class ActividadEconomica {
-
- protected String actividadGeneral;
- protected String codN1Familia;
- protected String codN2Grupo;
- protected String codN3SubGrupo;
- protected String codN4Clase;
- protected String codN5SubClase;
- protected String codN6Actividad;
- protected String n1Familia;
- protected String n2Grupo;
- protected String n3SubGrupo;
- protected String n4Clase;
- protected String n5SubClase;
- protected String n6Actividad;
-
- /**
- * Obtiene el valor de la propiedad actividadGeneral.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getActividadGeneral() {
- return actividadGeneral;
- }
-
- /**
- * Define el valor de la propiedad actividadGeneral.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setActividadGeneral(String value) {
- this.actividadGeneral = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codN1Familia.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodN1Familia() {
- return codN1Familia;
- }
-
- /**
- * Define el valor de la propiedad codN1Familia.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodN1Familia(String value) {
- this.codN1Familia = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codN2Grupo.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodN2Grupo() {
- return codN2Grupo;
- }
-
- /**
- * Define el valor de la propiedad codN2Grupo.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodN2Grupo(String value) {
- this.codN2Grupo = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codN3SubGrupo.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodN3SubGrupo() {
- return codN3SubGrupo;
- }
-
- /**
- * Define el valor de la propiedad codN3SubGrupo.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodN3SubGrupo(String value) {
- this.codN3SubGrupo = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codN4Clase.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodN4Clase() {
- return codN4Clase;
- }
-
- /**
- * Define el valor de la propiedad codN4Clase.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodN4Clase(String value) {
- this.codN4Clase = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codN5SubClase.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodN5SubClase() {
- return codN5SubClase;
- }
-
- /**
- * Define el valor de la propiedad codN5SubClase.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodN5SubClase(String value) {
- this.codN5SubClase = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codN6Actividad.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodN6Actividad() {
- return codN6Actividad;
- }
-
- /**
- * Define el valor de la propiedad codN6Actividad.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodN6Actividad(String value) {
- this.codN6Actividad = value;
- }
-
- /**
- * Obtiene el valor de la propiedad n1Familia.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getN1Familia() {
- return n1Familia;
- }
-
- /**
- * Define el valor de la propiedad n1Familia.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setN1Familia(String value) {
- this.n1Familia = value;
- }
-
- /**
- * Obtiene el valor de la propiedad n2Grupo.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getN2Grupo() {
- return n2Grupo;
- }
-
- /**
- * Define el valor de la propiedad n2Grupo.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setN2Grupo(String value) {
- this.n2Grupo = value;
- }
-
- /**
- * Obtiene el valor de la propiedad n3SubGrupo.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getN3SubGrupo() {
- return n3SubGrupo;
- }
-
- /**
- * Define el valor de la propiedad n3SubGrupo.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setN3SubGrupo(String value) {
- this.n3SubGrupo = value;
- }
-
- /**
- * Obtiene el valor de la propiedad n4Clase.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getN4Clase() {
- return n4Clase;
- }
-
- /**
- * Define el valor de la propiedad n4Clase.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setN4Clase(String value) {
- this.n4Clase = value;
- }
-
- /**
- * Obtiene el valor de la propiedad n5SubClase.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getN5SubClase() {
- return n5SubClase;
- }
-
- /**
- * Define el valor de la propiedad n5SubClase.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setN5SubClase(String value) {
- this.n5SubClase = value;
- }
-
- /**
- * Obtiene el valor de la propiedad n6Actividad.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getN6Actividad() {
- return n6Actividad;
- }
-
- /**
- * Define el valor de la propiedad n6Actividad.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setN6Actividad(String value) {
- this.n6Actividad = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/AgenteRetencion.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/AgenteRetencion.java.svn-base
deleted file mode 100644
index 1378a8c..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/AgenteRetencion.java.svn-base
+++ /dev/null
@@ -1,60 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="agenteRetencion">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "agenteRetencion", propOrder = {
- "nombre"
-})
-public class AgenteRetencion {
-
- protected String nombre;
-
- /**
- * Obtiene el valor de la propiedad nombre.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombre() {
- return nombre;
- }
-
- /**
- * Define el valor de la propiedad nombre.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombre(String value) {
- this.nombre = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/Contador.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/Contador.java.svn-base
deleted file mode 100644
index 8c4dfe4..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/Contador.java.svn-base
+++ /dev/null
@@ -1,114 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="contador">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="cedula" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="ruc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "contador", propOrder = {
- "cedula",
- "nombre",
- "ruc"
-})
-public class Contador {
-
- protected String cedula;
- protected String nombre;
- protected String ruc;
-
- /**
- * Obtiene el valor de la propiedad cedula.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCedula() {
- return cedula;
- }
-
- /**
- * Define el valor de la propiedad cedula.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCedula(String value) {
- this.cedula = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nombre.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombre() {
- return nombre;
- }
-
- /**
- * Define el valor de la propiedad nombre.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombre(String value) {
- this.nombre = value;
- }
-
- /**
- * Obtiene el valor de la propiedad ruc.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRuc() {
- return ruc;
- }
-
- /**
- * Define el valor de la propiedad ruc.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRuc(String value) {
- this.ruc = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/Contribuyente.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/Contribuyente.java.svn-base
deleted file mode 100644
index a31f64c..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/Contribuyente.java.svn-base
+++ /dev/null
@@ -1,416 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlSeeAlso;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="contribuyente">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="actividadEconomica" type="{http://sri.gov.ec/wsConsultaContribuyente}actividadEconomica" minOccurs="0"/>
- * <element name="codClaseContrib" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="desClaseContrib" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="desEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="direccionCorta" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="nombreComercial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="numeroRuc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="razonSocial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="telefonoDomicilio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="telefonoTrabajo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="tipoContribuyente" type="{http://sri.gov.ec/wsConsultaContribuyente}tipoContribuyente" minOccurs="0"/>
- * <element name="ubicacionGeografica" type="{http://sri.gov.ec/wsConsultaContribuyente}ubicacionGeografica" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "contribuyente", propOrder = {
- "actividadEconomica",
- "codClaseContrib",
- "codEstado",
- "desClaseContrib",
- "desEstado",
- "direccionCorta",
- "email",
- "nombreComercial",
- "numeroRuc",
- "razonSocial",
- "telefonoDomicilio",
- "telefonoTrabajo",
- "tipoContribuyente",
- "ubicacionGeografica"
-})
-@XmlSeeAlso({
- ContribuyenteOnLine.class,
- ContribuyenteCompleto.class
-})
-public class Contribuyente {
-
- protected ActividadEconomica actividadEconomica;
- protected String codClaseContrib;
- protected String codEstado;
- protected String desClaseContrib;
- protected String desEstado;
- protected String direccionCorta;
- protected String email;
- protected String nombreComercial;
- protected String numeroRuc;
- protected String razonSocial;
- protected String telefonoDomicilio;
- protected String telefonoTrabajo;
- protected TipoContribuyente tipoContribuyente;
- protected UbicacionGeografica ubicacionGeografica;
-
- /**
- * Obtiene el valor de la propiedad actividadEconomica.
- *
- * @return
- * possible object is
- * {@link ActividadEconomica }
- *
- */
- public ActividadEconomica getActividadEconomica() {
- return actividadEconomica;
- }
-
- /**
- * Define el valor de la propiedad actividadEconomica.
- *
- * @param value
- * allowed object is
- * {@link ActividadEconomica }
- *
- */
- public void setActividadEconomica(ActividadEconomica value) {
- this.actividadEconomica = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codClaseContrib.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodClaseContrib() {
- return codClaseContrib;
- }
-
- /**
- * Define el valor de la propiedad codClaseContrib.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodClaseContrib(String value) {
- this.codClaseContrib = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codEstado.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodEstado() {
- return codEstado;
- }
-
- /**
- * Define el valor de la propiedad codEstado.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodEstado(String value) {
- this.codEstado = value;
- }
-
- /**
- * Obtiene el valor de la propiedad desClaseContrib.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDesClaseContrib() {
- return desClaseContrib;
- }
-
- /**
- * Define el valor de la propiedad desClaseContrib.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDesClaseContrib(String value) {
- this.desClaseContrib = value;
- }
-
- /**
- * Obtiene el valor de la propiedad desEstado.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDesEstado() {
- return desEstado;
- }
-
- /**
- * Define el valor de la propiedad desEstado.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDesEstado(String value) {
- this.desEstado = value;
- }
-
- /**
- * Obtiene el valor de la propiedad direccionCorta.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDireccionCorta() {
- return direccionCorta;
- }
-
- /**
- * Define el valor de la propiedad direccionCorta.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDireccionCorta(String value) {
- this.direccionCorta = value;
- }
-
- /**
- * Obtiene el valor de la propiedad email.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getEmail() {
- return email;
- }
-
- /**
- * Define el valor de la propiedad email.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setEmail(String value) {
- this.email = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nombreComercial.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombreComercial() {
- return nombreComercial;
- }
-
- /**
- * Define el valor de la propiedad nombreComercial.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombreComercial(String value) {
- this.nombreComercial = value;
- }
-
- /**
- * Obtiene el valor de la propiedad numeroRuc.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNumeroRuc() {
- return numeroRuc;
- }
-
- /**
- * Define el valor de la propiedad numeroRuc.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNumeroRuc(String value) {
- this.numeroRuc = value;
- }
-
- /**
- * Obtiene el valor de la propiedad razonSocial.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRazonSocial() {
- return razonSocial;
- }
-
- /**
- * Define el valor de la propiedad razonSocial.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRazonSocial(String value) {
- this.razonSocial = value;
- }
-
- /**
- * Obtiene el valor de la propiedad telefonoDomicilio.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTelefonoDomicilio() {
- return telefonoDomicilio;
- }
-
- /**
- * Define el valor de la propiedad telefonoDomicilio.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTelefonoDomicilio(String value) {
- this.telefonoDomicilio = value;
- }
-
- /**
- * Obtiene el valor de la propiedad telefonoTrabajo.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTelefonoTrabajo() {
- return telefonoTrabajo;
- }
-
- /**
- * Define el valor de la propiedad telefonoTrabajo.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTelefonoTrabajo(String value) {
- this.telefonoTrabajo = value;
- }
-
- /**
- * Obtiene el valor de la propiedad tipoContribuyente.
- *
- * @return
- * possible object is
- * {@link TipoContribuyente }
- *
- */
- public TipoContribuyente getTipoContribuyente() {
- return tipoContribuyente;
- }
-
- /**
- * Define el valor de la propiedad tipoContribuyente.
- *
- * @param value
- * allowed object is
- * {@link TipoContribuyente }
- *
- */
- public void setTipoContribuyente(TipoContribuyente value) {
- this.tipoContribuyente = value;
- }
-
- /**
- * Obtiene el valor de la propiedad ubicacionGeografica.
- *
- * @return
- * possible object is
- * {@link UbicacionGeografica }
- *
- */
- public UbicacionGeografica getUbicacionGeografica() {
- return ubicacionGeografica;
- }
-
- /**
- * Define el valor de la propiedad ubicacionGeografica.
- *
- * @param value
- * allowed object is
- * {@link UbicacionGeografica }
- *
- */
- public void setUbicacionGeografica(UbicacionGeografica value) {
- this.ubicacionGeografica = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ContribuyenteCompleto.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ContribuyenteCompleto.java.svn-base
deleted file mode 100644
index 82a0b62..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ContribuyenteCompleto.java.svn-base
+++ /dev/null
@@ -1,575 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="contribuyenteCompleto">
- * <complexContent>
- * <extension base="{http://sri.gov.ec/wsConsultaContribuyente}contribuyente">
- * <sequence>
- * <element name="agenteRetencion" type="{http://sri.gov.ec/wsConsultaContribuyente}agenteRetencion" minOccurs="0"/>
- * <element name="calificacionArtesanal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="contador" type="{http://sri.gov.ec/wsConsultaContribuyente}contador" minOccurs="0"/>
- * <element name="direccionLarga" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="estructuraOrganizacional" type="{http://sri.gov.ec/wsConsultaContribuyente}estructuraOrganizacional" minOccurs="0"/>
- * <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fechaAltaParaEspecial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fechaCalificacionArtesanal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fechaCambioObligado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fechaInicioActividades" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fechaNacimiento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fechaNotificacionEspeciales" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fechaUltimaDeclaracion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="listaBlanca" type="{http://sri.gov.ec/wsConsultaContribuyente}listaBlanca" minOccurs="0"/>
- * <element name="numeroCalificacionArtesanal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="obligadoContabilidad" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="representanteLegal" type="{http://sri.gov.ec/wsConsultaContribuyente}representanteLegal" minOccurs="0"/>
- * <element name="resolucionAltaParaEspecial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="tipoCalificacionArtesanal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="ultimoPeriodoFiscalCumplido" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "contribuyenteCompleto", propOrder = {
- "agenteRetencion",
- "calificacionArtesanal",
- "contador",
- "direccionLarga",
- "estructuraOrganizacional",
- "fax",
- "fechaAltaParaEspecial",
- "fechaCalificacionArtesanal",
- "fechaCambioObligado",
- "fechaInicioActividades",
- "fechaNacimiento",
- "fechaNotificacionEspeciales",
- "fechaUltimaDeclaracion",
- "listaBlanca",
- "numeroCalificacionArtesanal",
- "obligadoContabilidad",
- "representanteLegal",
- "resolucionAltaParaEspecial",
- "tipoCalificacionArtesanal",
- "ultimoPeriodoFiscalCumplido"
-})
-public class ContribuyenteCompleto
- extends Contribuyente
-{
-
- protected AgenteRetencion agenteRetencion;
- protected String calificacionArtesanal;
- protected Contador contador;
- protected String direccionLarga;
- protected EstructuraOrganizacional estructuraOrganizacional;
- protected String fax;
- protected String fechaAltaParaEspecial;
- protected String fechaCalificacionArtesanal;
- protected String fechaCambioObligado;
- protected String fechaInicioActividades;
- protected String fechaNacimiento;
- protected String fechaNotificacionEspeciales;
- protected String fechaUltimaDeclaracion;
- protected ListaBlanca listaBlanca;
- protected String numeroCalificacionArtesanal;
- protected String obligadoContabilidad;
- protected RepresentanteLegal representanteLegal;
- protected String resolucionAltaParaEspecial;
- protected String tipoCalificacionArtesanal;
- protected String ultimoPeriodoFiscalCumplido;
-
- /**
- * Obtiene el valor de la propiedad agenteRetencion.
- *
- * @return
- * possible object is
- * {@link AgenteRetencion }
- *
- */
- public AgenteRetencion getAgenteRetencion() {
- return agenteRetencion;
- }
-
- /**
- * Define el valor de la propiedad agenteRetencion.
- *
- * @param value
- * allowed object is
- * {@link AgenteRetencion }
- *
- */
- public void setAgenteRetencion(AgenteRetencion value) {
- this.agenteRetencion = value;
- }
-
- /**
- * Obtiene el valor de la propiedad calificacionArtesanal.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCalificacionArtesanal() {
- return calificacionArtesanal;
- }
-
- /**
- * Define el valor de la propiedad calificacionArtesanal.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCalificacionArtesanal(String value) {
- this.calificacionArtesanal = value;
- }
-
- /**
- * Obtiene el valor de la propiedad contador.
- *
- * @return
- * possible object is
- * {@link Contador }
- *
- */
- public Contador getContador() {
- return contador;
- }
-
- /**
- * Define el valor de la propiedad contador.
- *
- * @param value
- * allowed object is
- * {@link Contador }
- *
- */
- public void setContador(Contador value) {
- this.contador = value;
- }
-
- /**
- * Obtiene el valor de la propiedad direccionLarga.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDireccionLarga() {
- return direccionLarga;
- }
-
- /**
- * Define el valor de la propiedad direccionLarga.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDireccionLarga(String value) {
- this.direccionLarga = value;
- }
-
- /**
- * Obtiene el valor de la propiedad estructuraOrganizacional.
- *
- * @return
- * possible object is
- * {@link EstructuraOrganizacional }
- *
- */
- public EstructuraOrganizacional getEstructuraOrganizacional() {
- return estructuraOrganizacional;
- }
-
- /**
- * Define el valor de la propiedad estructuraOrganizacional.
- *
- * @param value
- * allowed object is
- * {@link EstructuraOrganizacional }
- *
- */
- public void setEstructuraOrganizacional(EstructuraOrganizacional value) {
- this.estructuraOrganizacional = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fax.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFax() {
- return fax;
- }
-
- /**
- * Define el valor de la propiedad fax.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFax(String value) {
- this.fax = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaAltaParaEspecial.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaAltaParaEspecial() {
- return fechaAltaParaEspecial;
- }
-
- /**
- * Define el valor de la propiedad fechaAltaParaEspecial.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaAltaParaEspecial(String value) {
- this.fechaAltaParaEspecial = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaCalificacionArtesanal.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaCalificacionArtesanal() {
- return fechaCalificacionArtesanal;
- }
-
- /**
- * Define el valor de la propiedad fechaCalificacionArtesanal.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaCalificacionArtesanal(String value) {
- this.fechaCalificacionArtesanal = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaCambioObligado.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaCambioObligado() {
- return fechaCambioObligado;
- }
-
- /**
- * Define el valor de la propiedad fechaCambioObligado.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaCambioObligado(String value) {
- this.fechaCambioObligado = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaInicioActividades.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaInicioActividades() {
- return fechaInicioActividades;
- }
-
- /**
- * Define el valor de la propiedad fechaInicioActividades.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaInicioActividades(String value) {
- this.fechaInicioActividades = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaNacimiento.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaNacimiento() {
- return fechaNacimiento;
- }
-
- /**
- * Define el valor de la propiedad fechaNacimiento.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaNacimiento(String value) {
- this.fechaNacimiento = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaNotificacionEspeciales.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaNotificacionEspeciales() {
- return fechaNotificacionEspeciales;
- }
-
- /**
- * Define el valor de la propiedad fechaNotificacionEspeciales.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaNotificacionEspeciales(String value) {
- this.fechaNotificacionEspeciales = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaUltimaDeclaracion.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaUltimaDeclaracion() {
- return fechaUltimaDeclaracion;
- }
-
- /**
- * Define el valor de la propiedad fechaUltimaDeclaracion.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaUltimaDeclaracion(String value) {
- this.fechaUltimaDeclaracion = value;
- }
-
- /**
- * Obtiene el valor de la propiedad listaBlanca.
- *
- * @return
- * possible object is
- * {@link ListaBlanca }
- *
- */
- public ListaBlanca getListaBlanca() {
- return listaBlanca;
- }
-
- /**
- * Define el valor de la propiedad listaBlanca.
- *
- * @param value
- * allowed object is
- * {@link ListaBlanca }
- *
- */
- public void setListaBlanca(ListaBlanca value) {
- this.listaBlanca = value;
- }
-
- /**
- * Obtiene el valor de la propiedad numeroCalificacionArtesanal.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNumeroCalificacionArtesanal() {
- return numeroCalificacionArtesanal;
- }
-
- /**
- * Define el valor de la propiedad numeroCalificacionArtesanal.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNumeroCalificacionArtesanal(String value) {
- this.numeroCalificacionArtesanal = value;
- }
-
- /**
- * Obtiene el valor de la propiedad obligadoContabilidad.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getObligadoContabilidad() {
- return obligadoContabilidad;
- }
-
- /**
- * Define el valor de la propiedad obligadoContabilidad.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setObligadoContabilidad(String value) {
- this.obligadoContabilidad = value;
- }
-
- /**
- * Obtiene el valor de la propiedad representanteLegal.
- *
- * @return
- * possible object is
- * {@link RepresentanteLegal }
- *
- */
- public RepresentanteLegal getRepresentanteLegal() {
- return representanteLegal;
- }
-
- /**
- * Define el valor de la propiedad representanteLegal.
- *
- * @param value
- * allowed object is
- * {@link RepresentanteLegal }
- *
- */
- public void setRepresentanteLegal(RepresentanteLegal value) {
- this.representanteLegal = value;
- }
-
- /**
- * Obtiene el valor de la propiedad resolucionAltaParaEspecial.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getResolucionAltaParaEspecial() {
- return resolucionAltaParaEspecial;
- }
-
- /**
- * Define el valor de la propiedad resolucionAltaParaEspecial.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setResolucionAltaParaEspecial(String value) {
- this.resolucionAltaParaEspecial = value;
- }
-
- /**
- * Obtiene el valor de la propiedad tipoCalificacionArtesanal.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTipoCalificacionArtesanal() {
- return tipoCalificacionArtesanal;
- }
-
- /**
- * Define el valor de la propiedad tipoCalificacionArtesanal.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTipoCalificacionArtesanal(String value) {
- this.tipoCalificacionArtesanal = value;
- }
-
- /**
- * Obtiene el valor de la propiedad ultimoPeriodoFiscalCumplido.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getUltimoPeriodoFiscalCumplido() {
- return ultimoPeriodoFiscalCumplido;
- }
-
- /**
- * Define el valor de la propiedad ultimoPeriodoFiscalCumplido.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setUltimoPeriodoFiscalCumplido(String value) {
- this.ultimoPeriodoFiscalCumplido = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ContribuyenteOnLine.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ContribuyenteOnLine.java.svn-base
deleted file mode 100644
index 080ef38..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ContribuyenteOnLine.java.svn-base
+++ /dev/null
@@ -1,332 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="contribuyenteOnLine">
- * <complexContent>
- * <extension base="{http://sri.gov.ec/wsConsultaContribuyente}contribuyente">
- * <sequence>
- * <element name="actEcoPrin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="activEstablec" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codActEcoPrin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="desUbicaGeograf" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="descTipoContri" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fechaIniAct" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="idRepreLegal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="nombreRepreLegal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="telefonos" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="tipoContri" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="ubicaGeograf" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "contribuyenteOnLine", propOrder = {
- "actEcoPrin",
- "activEstablec",
- "codActEcoPrin",
- "desUbicaGeograf",
- "descTipoContri",
- "fechaIniAct",
- "idRepreLegal",
- "nombreRepreLegal",
- "telefonos",
- "tipoContri",
- "ubicaGeograf"
-})
-public class ContribuyenteOnLine
- extends Contribuyente
-{
-
- protected String actEcoPrin;
- protected String activEstablec;
- protected String codActEcoPrin;
- protected String desUbicaGeograf;
- protected String descTipoContri;
- protected String fechaIniAct;
- protected String idRepreLegal;
- protected String nombreRepreLegal;
- protected String telefonos;
- protected String tipoContri;
- protected String ubicaGeograf;
-
- /**
- * Obtiene el valor de la propiedad actEcoPrin.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getActEcoPrin() {
- return actEcoPrin;
- }
-
- /**
- * Define el valor de la propiedad actEcoPrin.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setActEcoPrin(String value) {
- this.actEcoPrin = value;
- }
-
- /**
- * Obtiene el valor de la propiedad activEstablec.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getActivEstablec() {
- return activEstablec;
- }
-
- /**
- * Define el valor de la propiedad activEstablec.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setActivEstablec(String value) {
- this.activEstablec = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codActEcoPrin.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodActEcoPrin() {
- return codActEcoPrin;
- }
-
- /**
- * Define el valor de la propiedad codActEcoPrin.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodActEcoPrin(String value) {
- this.codActEcoPrin = value;
- }
-
- /**
- * Obtiene el valor de la propiedad desUbicaGeograf.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDesUbicaGeograf() {
- return desUbicaGeograf;
- }
-
- /**
- * Define el valor de la propiedad desUbicaGeograf.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDesUbicaGeograf(String value) {
- this.desUbicaGeograf = value;
- }
-
- /**
- * Obtiene el valor de la propiedad descTipoContri.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDescTipoContri() {
- return descTipoContri;
- }
-
- /**
- * Define el valor de la propiedad descTipoContri.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDescTipoContri(String value) {
- this.descTipoContri = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fechaIniAct.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFechaIniAct() {
- return fechaIniAct;
- }
-
- /**
- * Define el valor de la propiedad fechaIniAct.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFechaIniAct(String value) {
- this.fechaIniAct = value;
- }
-
- /**
- * Obtiene el valor de la propiedad idRepreLegal.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getIdRepreLegal() {
- return idRepreLegal;
- }
-
- /**
- * Define el valor de la propiedad idRepreLegal.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setIdRepreLegal(String value) {
- this.idRepreLegal = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nombreRepreLegal.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombreRepreLegal() {
- return nombreRepreLegal;
- }
-
- /**
- * Define el valor de la propiedad nombreRepreLegal.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombreRepreLegal(String value) {
- this.nombreRepreLegal = value;
- }
-
- /**
- * Obtiene el valor de la propiedad telefonos.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTelefonos() {
- return telefonos;
- }
-
- /**
- * Define el valor de la propiedad telefonos.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTelefonos(String value) {
- this.telefonos = value;
- }
-
- /**
- * Obtiene el valor de la propiedad tipoContri.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTipoContri() {
- return tipoContri;
- }
-
- /**
- * Define el valor de la propiedad tipoContri.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTipoContri(String value) {
- this.tipoContri = value;
- }
-
- /**
- * Obtiene el valor de la propiedad ubicaGeograf.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getUbicaGeograf() {
- return ubicaGeograf;
- }
-
- /**
- * Define el valor de la propiedad ubicaGeograf.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setUbicaGeograf(String value) {
- this.ubicaGeograf = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/EstructuraOrganizacional.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/EstructuraOrganizacional.java.svn-base
deleted file mode 100644
index c175fee..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/EstructuraOrganizacional.java.svn-base
+++ /dev/null
@@ -1,160 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="estructuraOrganizacional">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="codigoProvincia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codigoRegional" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="id" type="{http://www.w3.org/2001/XMLSchema}long"/>
- * <element name="nombreProvincia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="nombreRegional" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "estructuraOrganizacional", propOrder = {
- "codigoProvincia",
- "codigoRegional",
- "id",
- "nombreProvincia",
- "nombreRegional"
-})
-public class EstructuraOrganizacional {
-
- protected String codigoProvincia;
- protected String codigoRegional;
- protected long id;
- protected String nombreProvincia;
- protected String nombreRegional;
-
- /**
- * Obtiene el valor de la propiedad codigoProvincia.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodigoProvincia() {
- return codigoProvincia;
- }
-
- /**
- * Define el valor de la propiedad codigoProvincia.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodigoProvincia(String value) {
- this.codigoProvincia = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codigoRegional.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodigoRegional() {
- return codigoRegional;
- }
-
- /**
- * Define el valor de la propiedad codigoRegional.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodigoRegional(String value) {
- this.codigoRegional = value;
- }
-
- /**
- * Obtiene el valor de la propiedad id.
- *
- */
- public long getId() {
- return id;
- }
-
- /**
- * Define el valor de la propiedad id.
- *
- */
- public void setId(long value) {
- this.id = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nombreProvincia.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombreProvincia() {
- return nombreProvincia;
- }
-
- /**
- * Define el valor de la propiedad nombreProvincia.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombreProvincia(String value) {
- this.nombreProvincia = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nombreRegional.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombreRegional() {
- return nombreRegional;
- }
-
- /**
- * Define el valor de la propiedad nombreRegional.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombreRegional(String value) {
- this.nombreRegional = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ListaBlanca.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ListaBlanca.java.svn-base
deleted file mode 100644
index 91b3c90..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ListaBlanca.java.svn-base
+++ /dev/null
@@ -1,60 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="listaBlanca">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="estado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "listaBlanca", propOrder = {
- "estado"
-})
-public class ListaBlanca {
-
- protected String estado;
-
- /**
- * 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;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObjectFactory.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObjectFactory.java.svn-base
deleted file mode 100644
index 88df996..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObjectFactory.java.svn-base
+++ /dev/null
@@ -1,231 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the ec.gov.sri.wsconsultacontribuyente package.
- *
- * <complexType name="obtenerCompleto">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="numeroRuc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fuenteDatos" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "obtenerCompleto", propOrder = {
- "numeroRuc",
- "fuenteDatos"
-})
-public class ObtenerCompleto {
-
- protected String numeroRuc;
- protected String fuenteDatos;
-
- /**
- * Obtiene el valor de la propiedad numeroRuc.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNumeroRuc() {
- return numeroRuc;
- }
-
- /**
- * Define el valor de la propiedad numeroRuc.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNumeroRuc(String value) {
- this.numeroRuc = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fuenteDatos.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFuenteDatos() {
- return fuenteDatos;
- }
-
- /**
- * Define el valor de la propiedad fuenteDatos.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFuenteDatos(String value) {
- this.fuenteDatos = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerCompletoResponse.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerCompletoResponse.java.svn-base
deleted file mode 100644
index 581adf2..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerCompletoResponse.java.svn-base
+++ /dev/null
@@ -1,62 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="obtenerCompletoResponse">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="return" type="{http://sri.gov.ec/wsConsultaContribuyente}contribuyenteCompleto" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "obtenerCompletoResponse", propOrder = {
- "_return"
-})
-public class ObtenerCompletoResponse {
-
- @XmlElement(name = "return")
- protected ContribuyenteCompleto _return;
-
- /**
- * Obtiene el valor de la propiedad return.
- *
- * @return
- * possible object is
- * {@link ContribuyenteCompleto }
- *
- */
- public ContribuyenteCompleto getReturn() {
- return _return;
- }
-
- /**
- * Define el valor de la propiedad return.
- *
- * @param value
- * allowed object is
- * {@link ContribuyenteCompleto }
- *
- */
- public void setReturn(ContribuyenteCompleto value) {
- this._return = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerDatos.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerDatos.java.svn-base
deleted file mode 100644
index ba64c14..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerDatos.java.svn-base
+++ /dev/null
@@ -1,60 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="obtenerDatos">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="numeroRuc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "obtenerDatos", propOrder = {
- "numeroRuc"
-})
-public class ObtenerDatos {
-
- protected String numeroRuc;
-
- /**
- * Obtiene el valor de la propiedad numeroRuc.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNumeroRuc() {
- return numeroRuc;
- }
-
- /**
- * Define el valor de la propiedad numeroRuc.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNumeroRuc(String value) {
- this.numeroRuc = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerDatosResponse.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerDatosResponse.java.svn-base
deleted file mode 100644
index d111281..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerDatosResponse.java.svn-base
+++ /dev/null
@@ -1,62 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="obtenerDatosResponse">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="return" type="{http://sri.gov.ec/wsConsultaContribuyente}contribuyenteOnLine" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "obtenerDatosResponse", propOrder = {
- "_return"
-})
-public class ObtenerDatosResponse {
-
- @XmlElement(name = "return")
- protected ContribuyenteOnLine _return;
-
- /**
- * Obtiene el valor de la propiedad return.
- *
- * @return
- * possible object is
- * {@link ContribuyenteOnLine }
- *
- */
- public ContribuyenteOnLine getReturn() {
- return _return;
- }
-
- /**
- * Define el valor de la propiedad return.
- *
- * @param value
- * allowed object is
- * {@link ContribuyenteOnLine }
- *
- */
- public void setReturn(ContribuyenteOnLine value) {
- this._return = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerSimple.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerSimple.java.svn-base
deleted file mode 100644
index 0b08a57..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerSimple.java.svn-base
+++ /dev/null
@@ -1,87 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="obtenerSimple">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="numeroRuc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="fuenteDatos" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "obtenerSimple", propOrder = {
- "numeroRuc",
- "fuenteDatos"
-})
-public class ObtenerSimple {
-
- protected String numeroRuc;
- protected String fuenteDatos;
-
- /**
- * Obtiene el valor de la propiedad numeroRuc.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNumeroRuc() {
- return numeroRuc;
- }
-
- /**
- * Define el valor de la propiedad numeroRuc.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNumeroRuc(String value) {
- this.numeroRuc = value;
- }
-
- /**
- * Obtiene el valor de la propiedad fuenteDatos.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFuenteDatos() {
- return fuenteDatos;
- }
-
- /**
- * Define el valor de la propiedad fuenteDatos.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFuenteDatos(String value) {
- this.fuenteDatos = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerSimpleResponse.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerSimpleResponse.java.svn-base
deleted file mode 100644
index 3d2a334..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/ObtenerSimpleResponse.java.svn-base
+++ /dev/null
@@ -1,62 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="obtenerSimpleResponse">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="return" type="{http://sri.gov.ec/wsConsultaContribuyente}contribuyente" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "obtenerSimpleResponse", propOrder = {
- "_return"
-})
-public class ObtenerSimpleResponse {
-
- @XmlElement(name = "return")
- protected Contribuyente _return;
-
- /**
- * Obtiene el valor de la propiedad return.
- *
- * @return
- * possible object is
- * {@link Contribuyente }
- *
- */
- public Contribuyente getReturn() {
- return _return;
- }
-
- /**
- * Define el valor de la propiedad return.
- *
- * @param value
- * allowed object is
- * {@link Contribuyente }
- *
- */
- public void setReturn(Contribuyente value) {
- this._return = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/RepresentanteLegal.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/RepresentanteLegal.java.svn-base
deleted file mode 100644
index 16e3747..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/RepresentanteLegal.java.svn-base
+++ /dev/null
@@ -1,114 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="representanteLegal">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="cargo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="identificacion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "representanteLegal", propOrder = {
- "cargo",
- "identificacion",
- "nombre"
-})
-public class RepresentanteLegal {
-
- protected String cargo;
- protected String identificacion;
- protected String nombre;
-
- /**
- * Obtiene el valor de la propiedad cargo.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCargo() {
- return cargo;
- }
-
- /**
- * Define el valor de la propiedad cargo.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCargo(String value) {
- this.cargo = value;
- }
-
- /**
- * Obtiene el valor de la propiedad identificacion.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getIdentificacion() {
- return identificacion;
- }
-
- /**
- * Define el valor de la propiedad identificacion.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setIdentificacion(String value) {
- this.identificacion = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nombre.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNombre() {
- return nombre;
- }
-
- /**
- * Define el valor de la propiedad nombre.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNombre(String value) {
- this.nombre = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/TipoContribuyente.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/TipoContribuyente.java.svn-base
deleted file mode 100644
index 6e99e41..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/TipoContribuyente.java.svn-base
+++ /dev/null
@@ -1,195 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="tipoContribuyente">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- * <element name="nivel1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="nivel2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="nivel3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="nivel4" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="ultimoNivel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "tipoContribuyente", propOrder = {
- "id",
- "nivel1",
- "nivel2",
- "nivel3",
- "nivel4",
- "ultimoNivel"
-})
-public class TipoContribuyente {
-
- protected Long id;
- protected String nivel1;
- protected String nivel2;
- protected String nivel3;
- protected String nivel4;
- protected String ultimoNivel;
-
- /**
- * Obtiene el valor de la propiedad id.
- *
- * @return
- * possible object is
- * {@link Long }
- *
- */
- public Long getId() {
- return id;
- }
-
- /**
- * Define el valor de la propiedad id.
- *
- * @param value
- * allowed object is
- * {@link Long }
- *
- */
- public void setId(Long value) {
- this.id = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nivel1.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNivel1() {
- return nivel1;
- }
-
- /**
- * Define el valor de la propiedad nivel1.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNivel1(String value) {
- this.nivel1 = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nivel2.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNivel2() {
- return nivel2;
- }
-
- /**
- * Define el valor de la propiedad nivel2.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNivel2(String value) {
- this.nivel2 = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nivel3.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNivel3() {
- return nivel3;
- }
-
- /**
- * Define el valor de la propiedad nivel3.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNivel3(String value) {
- this.nivel3 = value;
- }
-
- /**
- * Obtiene el valor de la propiedad nivel4.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNivel4() {
- return nivel4;
- }
-
- /**
- * Define el valor de la propiedad nivel4.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNivel4(String value) {
- this.nivel4 = value;
- }
-
- /**
- * Obtiene el valor de la propiedad ultimoNivel.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getUltimoNivel() {
- return ultimoNivel;
- }
-
- /**
- * Define el valor de la propiedad ultimoNivel.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setUltimoNivel(String value) {
- this.ultimoNivel = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/UbicacionGeografica.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/UbicacionGeografica.java.svn-base
deleted file mode 100644
index a8d4e56..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/UbicacionGeografica.java.svn-base
+++ /dev/null
@@ -1,303 +0,0 @@
-
-package ec.gov.sri.wsconsultacontribuyente;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="ubicacionGeografica">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="canton" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codCanton" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codPais" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codParroquia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codProvincia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="codRegion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="pais" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="parroquia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="provincia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ubicacionGeografica", propOrder = {
- "canton",
- "codCanton",
- "codPais",
- "codParroquia",
- "codProvincia",
- "codRegion",
- "pais",
- "parroquia",
- "provincia",
- "region"
-})
-public class UbicacionGeografica {
-
- protected String canton;
- protected String codCanton;
- protected String codPais;
- protected String codParroquia;
- protected String codProvincia;
- protected String codRegion;
- protected String pais;
- protected String parroquia;
- protected String provincia;
- protected String region;
-
- /**
- * Obtiene el valor de la propiedad canton.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCanton() {
- return canton;
- }
-
- /**
- * Define el valor de la propiedad canton.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCanton(String value) {
- this.canton = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codCanton.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodCanton() {
- return codCanton;
- }
-
- /**
- * Define el valor de la propiedad codCanton.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodCanton(String value) {
- this.codCanton = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codPais.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodPais() {
- return codPais;
- }
-
- /**
- * Define el valor de la propiedad codPais.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodPais(String value) {
- this.codPais = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codParroquia.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodParroquia() {
- return codParroquia;
- }
-
- /**
- * Define el valor de la propiedad codParroquia.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodParroquia(String value) {
- this.codParroquia = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codProvincia.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodProvincia() {
- return codProvincia;
- }
-
- /**
- * Define el valor de la propiedad codProvincia.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodProvincia(String value) {
- this.codProvincia = value;
- }
-
- /**
- * Obtiene el valor de la propiedad codRegion.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCodRegion() {
- return codRegion;
- }
-
- /**
- * Define el valor de la propiedad codRegion.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCodRegion(String value) {
- this.codRegion = 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 parroquia.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getParroquia() {
- return parroquia;
- }
-
- /**
- * Define el valor de la propiedad parroquia.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setParroquia(String value) {
- this.parroquia = value;
- }
-
- /**
- * Obtiene el valor de la propiedad provincia.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getProvincia() {
- return provincia;
- }
-
- /**
- * Define el valor de la propiedad provincia.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setProvincia(String value) {
- this.provincia = value;
- }
-
- /**
- * Obtiene el valor de la propiedad region.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRegion() {
- return region;
- }
-
- /**
- * Define el valor de la propiedad region.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRegion(String value) {
- this.region = value;
- }
-
-}
diff --git a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/package-info.java.svn-base b/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/package-info.java.svn-base
deleted file mode 100644
index 1a4786d..0000000
--- a/ejb/src/main/java/ec/gov/sri/wsconsultacontribuyente/.svn/text-base/package-info.java.svn-base
+++ /dev/null
@@ -1,2 +0,0 @@
-@javax.xml.bind.annotation.XmlSchema(namespace = "http://sri.gov.ec/wsConsultaContribuyente")
-package ec.gov.sri.wsconsultacontribuyente;
diff --git a/ejb/src/main/resources/.svn/entries b/ejb/src/main/resources/.svn/entries
deleted file mode 100644
index 4e3d65e..0000000
--- a/ejb/src/main/resources/.svn/entries
+++ /dev/null
@@ -1,34 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/main/resources
-svn://172.17.26.185/COMACO
-
-
-
-2015-01-23T13:46:17.807977Z
-3804
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-META-INF
-dir
-
-com
-dir
-
diff --git a/ejb/src/main/resources/META-INF/.svn/entries b/ejb/src/main/resources/META-INF/.svn/entries
deleted file mode 100644
index 1ec1edc..0000000
--- a/ejb/src/main/resources/META-INF/.svn/entries
+++ /dev/null
@@ -1,130 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/main/resources/META-INF
-svn://172.17.26.185/COMACO
-
-
-
-2014-11-13T04:52:19.727517Z
-2694
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-persistence.xml
-file
-
-
-
-
-2022-07-28T03:45:35.558070Z
-ccac323e87d00531b9c2facd148443ef
-2014-11-13T04:52:19.727517Z
-2694
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-2577
-
-beans.xml
-file
-
-
-
-
-2022-07-28T03:45:35.558070Z
-49957eab46e36079f71e1ac1d0d8eb8f
-2014-08-15T13:56:33.844127Z
-203
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1036
-
-ormPortal.xml
-file
-
-
-
-
-2022-07-28T03:45:35.558070Z
-73d24a750e10f73f9e3e6319093356a7
-2014-08-15T13:56:33.844127Z
-203
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-312
-
diff --git a/ejb/src/main/resources/META-INF/.svn/prop-base/beans.xml.svn-base b/ejb/src/main/resources/META-INF/.svn/prop-base/beans.xml.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/resources/META-INF/.svn/prop-base/beans.xml.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/resources/META-INF/.svn/prop-base/ormPortal.xml.svn-base b/ejb/src/main/resources/META-INF/.svn/prop-base/ormPortal.xml.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/resources/META-INF/.svn/prop-base/ormPortal.xml.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/resources/META-INF/.svn/prop-base/persistence.xml.svn-base b/ejb/src/main/resources/META-INF/.svn/prop-base/persistence.xml.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/main/resources/META-INF/.svn/prop-base/persistence.xml.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/main/resources/META-INF/.svn/text-base/beans.xml.svn-base b/ejb/src/main/resources/META-INF/.svn/text-base/beans.xml.svn-base
deleted file mode 100644
index 8a38e83..0000000
--- a/ejb/src/main/resources/META-INF/.svn/text-base/beans.xml.svn-base
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
Estimado(a)
{0}
Presente.-
Se ha validado la información registrada y se generó las siguientes credenciales de acceso al Sistema de Control de Armas\:
USUARIO\:{1}
CLAVE\:{2}
Es responsabilidad del usuario el manejo y uso de clave entregada.
Atentamente,
USUARIO ADMINISTRADOR
CENTRO DE CONTROL ARMAS QUITO
NOTA\:
Este mensaje fue enviado automáticamente por el sistema, por favor no responda a esta cuenta de correo.
-correo.envio.default.notificiacion=notificacion@controlarmas.ccffaa.mil.ec
-
-##ERRORES COMUNES
-error.jpa.lock.timeout=Existi\u00F3 un error a causa de un bloqueo pesimista, causado por accesos concurrentes al mismo registro
-error.jpa.entity.notfound=No se pudo recuperar una referencia del registro dado que no existe en la base de datos
-error.jpa.entity.exists=Error al guardar, el registro ya existe en la base de datos
-error.jpa.entity.nonuniqueresult=Error al buscar, la consulta devolvi\u00F3 mas de un registro
-error.jpa.entity.noresult=Error al buscar, la consulta no devolvi\u00F3 datos
-error.jpa.lock.optimisticlock=Otro usuario esta cambiando el mismo registro, intente nuevamente
-error.jpa.entity.querytimeout=Error al buscar, la consulta ha excedido el tiempo de espera permitido en la base de datos
-error.jpa.transaction.rollback=Error al procesar la transacci\u00F3n, no se pudo guardar el registro
-error.jpa.transaction.requiredtransaction=Error al guardar, se requiere de una transacci\u00F3n activa para realizar esta operaci\u00F3n
diff --git a/ejb/src/test/.svn/entries b/ejb/src/test/.svn/entries
deleted file mode 100644
index ccb42da..0000000
--- a/ejb/src/test/.svn/entries
+++ /dev/null
@@ -1,34 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/test
-svn://172.17.26.185/COMACO
-
-
-
-2014-08-21T12:01:54.070442Z
-264
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-java
-dir
-
-resources
-dir
-
diff --git a/ejb/src/test/java/.svn/entries b/ejb/src/test/java/.svn/entries
deleted file mode 100644
index cd36fde..0000000
--- a/ejb/src/test/java/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/test/java
-svn://172.17.26.185/COMACO
-
-
-
-2014-08-21T12:01:54.070442Z
-264
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-com
-dir
-
diff --git a/ejb/src/test/java/com/.svn/entries b/ejb/src/test/java/com/.svn/entries
deleted file mode 100644
index d97736d..0000000
--- a/ejb/src/test/java/com/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/test/java/com
-svn://172.17.26.185/COMACO
-
-
-
-2014-08-21T12:01:54.070442Z
-264
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-fp
-dir
-
diff --git a/ejb/src/test/java/com/fp/.svn/entries b/ejb/src/test/java/com/fp/.svn/entries
deleted file mode 100644
index 9472e72..0000000
--- a/ejb/src/test/java/com/fp/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/test/java/com/fp
-svn://172.17.26.185/COMACO
-
-
-
-2014-08-21T12:01:54.070442Z
-264
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-portal
-dir
-
diff --git a/ejb/src/test/java/com/fp/portal/.svn/entries b/ejb/src/test/java/com/fp/portal/.svn/entries
deleted file mode 100644
index 49ca6ab..0000000
--- a/ejb/src/test/java/com/fp/portal/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/test/java/com/fp/portal
-svn://172.17.26.185/COMACO
-
-
-
-2014-08-21T12:01:54.070442Z
-264
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-test
-dir
-
diff --git a/ejb/src/test/java/com/fp/portal/test/.svn/entries b/ejb/src/test/java/com/fp/portal/test/.svn/entries
deleted file mode 100644
index b341010..0000000
--- a/ejb/src/test/java/com/fp/portal/test/.svn/entries
+++ /dev/null
@@ -1,62 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/test/java/com/fp/portal/test
-svn://172.17.26.185/COMACO
-
-
-
-2014-08-21T12:01:54.070442Z
-264
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-TestEjemplos.java
-file
-
-
-
-
-2022-07-28T03:45:34.033063Z
-e5fec4dcf09de44f31815aef1ea74982
-2014-08-21T12:01:54.070442Z
-264
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-427
-
diff --git a/ejb/src/test/java/com/fp/portal/test/.svn/prop-base/TestEjemplos.java.svn-base b/ejb/src/test/java/com/fp/portal/test/.svn/prop-base/TestEjemplos.java.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/test/java/com/fp/portal/test/.svn/prop-base/TestEjemplos.java.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/test/java/com/fp/portal/test/.svn/text-base/TestEjemplos.java.svn-base b/ejb/src/test/java/com/fp/portal/test/.svn/text-base/TestEjemplos.java.svn-base
deleted file mode 100644
index 0ca71ee..0000000
--- a/ejb/src/test/java/com/fp/portal/test/.svn/text-base/TestEjemplos.java.svn-base
+++ /dev/null
@@ -1,25 +0,0 @@
-package com.fp.portal.test;
-
-import org.junit.Test;
-
-public class TestEjemplos {
-
- @Test
- public void prueba() {
- Person a = new Person("Juan");
- Person b = a;
- Person c = new Person("Juan");
- System.out.println(a==b);
- System.out.println(a.equals(b));
- System.out.println(a==c);
- System.out.println(a.equals(c));
- }
-
- class Person{
- private String name;
-
- public Person(String name){
- this.name = name;
- }
- }
-}
diff --git a/ejb/src/test/resources/.svn/entries b/ejb/src/test/resources/.svn/entries
deleted file mode 100644
index 3669f4b..0000000
--- a/ejb/src/test/resources/.svn/entries
+++ /dev/null
@@ -1,99 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/ejb/src/test/resources
-svn://172.17.26.185/COMACO
-
-
-
-2014-08-15T13:56:33.844127Z
-203
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-META-INF
-dir
-
-arquillian.xml
-file
-
-
-
-
-2022-07-28T03:45:34.268064Z
-76a308bcb3260d58adb48e8445c1afbc
-2014-08-15T13:56:33.844127Z
-203
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1899
-
-test-ds.xml
-file
-
-
-
-
-2022-07-28T03:45:34.268064Z
-8832076921f1b93a98d8e7090fc95f39
-2014-08-15T13:56:33.844127Z
-203
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1766
-
diff --git a/ejb/src/test/resources/.svn/prop-base/arquillian.xml.svn-base b/ejb/src/test/resources/.svn/prop-base/arquillian.xml.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/test/resources/.svn/prop-base/arquillian.xml.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/test/resources/.svn/prop-base/test-ds.xml.svn-base b/ejb/src/test/resources/.svn/prop-base/test-ds.xml.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/ejb/src/test/resources/.svn/prop-base/test-ds.xml.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/ejb/src/test/resources/.svn/text-base/arquillian.xml.svn-base b/ejb/src/test/resources/.svn/text-base/arquillian.xml.svn-base
deleted file mode 100644
index c51f8d9..0000000
--- a/ejb/src/test/resources/.svn/text-base/arquillian.xml.svn-base
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-features parameter will have their default values.
- * @return
- * returns CedulaServicio
- */
- @WebEndpoint(name = "CedulaServicioPort")
- public CedulaServicio getCedulaServicioPort(WebServiceFeature... features) {
- return super.getPort(new QName("http://cedula.snap.webservices.fp.com/", "CedulaServicioPort"), CedulaServicio.class, features);
- }
-
- private static URL __getWsdlLocation() {
- if (CEDULASERVICIOSERVICE_EXCEPTION!= null) {
- throw CEDULASERVICIOSERVICE_EXCEPTION;
- }
- return CEDULASERVICIOSERVICE_WSDL_LOCATION;
- }
-
-}
diff --git a/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ClienteCedula.java.svn-base b/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ClienteCedula.java.svn-base
deleted file mode 100644
index 373a443..0000000
--- a/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ClienteCedula.java.svn-base
+++ /dev/null
@@ -1,34 +0,0 @@
-package com.fp.armas.portal.webservices.snap.cedula;
-
-import com.fp.armas.portal.util.PortalLogger;
-
-import ec.gob.registrocivil.consultacedula.Cedula;
-
-/**
- * Clase que realiza consultas al WS de la SNAP del registro civil
- * @author dcruz
- *
- */
-public class ClienteCedula implements PortalLogger{
-
- /**
- * Retorna los datos de la persona en base su numero de cédula
- * @param cedula
- * @return
- */
- public static Cedula obtenerCedula(String cedula) {
- Cedula cedulaResult = null;
- try {
- CedulaServicioService cedulaServicioService = new CedulaServicioService();
- cedulaResult = cedulaServicioService.getCedulaServicioPort().consultarCedula(cedula);
- } catch (Throwable e) {
- log.error(e.getMessage(), e);
- }
- return cedulaResult;
- }
-
- public static void main(String[] args) {
- System.out.println(obtenerCedula("1716776933"));
- }
-
-}
diff --git a/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ConsultarCedula.java.svn-base b/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ConsultarCedula.java.svn-base
deleted file mode 100644
index b6e62d7..0000000
--- a/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ConsultarCedula.java.svn-base
+++ /dev/null
@@ -1,60 +0,0 @@
-
-package com.fp.armas.portal.webservices.snap.cedula;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
- * <complexType name="consultarCedula">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="cedula" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "consultarCedula", propOrder = {
- "cedula"
-})
-public class ConsultarCedula {
-
- protected String cedula;
-
- /**
- * Obtiene el valor de la propiedad cedula.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCedula() {
- return cedula;
- }
-
- /**
- * Define el valor de la propiedad cedula.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCedula(String value) {
- this.cedula = value;
- }
-
-}
diff --git a/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ConsultarCedulaResponse.java.svn-base b/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ConsultarCedulaResponse.java.svn-base
deleted file mode 100644
index 300497e..0000000
--- a/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ConsultarCedulaResponse.java.svn-base
+++ /dev/null
@@ -1,63 +0,0 @@
-
-package com.fp.armas.portal.webservices.snap.cedula;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-import ec.gob.registrocivil.consultacedula.Cedula;
-
-
-/**
- *
- * <complexType name="consultarCedulaResponse">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="return" type="{http://www.registrocivil.gob.ec/ConsultaCedula}cedula" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "consultarCedulaResponse", propOrder = {
- "_return"
-})
-public class ConsultarCedulaResponse {
-
- @XmlElement(name = "return")
- protected Cedula _return;
-
- /**
- * Obtiene el valor de la propiedad return.
- *
- * @return
- * possible object is
- * {@link Cedula }
- *
- */
- public Cedula getReturn() {
- return _return;
- }
-
- /**
- * Define el valor de la propiedad return.
- *
- * @param value
- * allowed object is
- * {@link Cedula }
- *
- */
- public void setReturn(Cedula value) {
- this._return = value;
- }
-
-}
diff --git a/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ObjectFactory.java.svn-base b/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ObjectFactory.java.svn-base
deleted file mode 100644
index 401b3ae..0000000
--- a/web/src/main/java/com/fp/armas/portal/webservices/snap/cedula/.svn/text-base/ObjectFactory.java.svn-base
+++ /dev/null
@@ -1,71 +0,0 @@
-
-package com.fp.armas.portal.webservices.snap.cedula;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the com.fp.webservices.snap.cedula package.
- *
- * <complexType name="consultarRuc">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="ruc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "consultarRuc", propOrder = {
- "ruc"
-})
-public class ConsultarRuc {
-
- protected String ruc;
-
- /**
- * Obtiene el valor de la propiedad ruc.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRuc() {
- return ruc;
- }
-
- /**
- * Define el valor de la propiedad ruc.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRuc(String value) {
- this.ruc = value;
- }
-
-}
diff --git a/web/src/main/java/com/fp/armas/portal/webservices/snap/ruc/.svn/text-base/ConsultarRucResponse.java.svn-base b/web/src/main/java/com/fp/armas/portal/webservices/snap/ruc/.svn/text-base/ConsultarRucResponse.java.svn-base
deleted file mode 100644
index 27c516a..0000000
--- a/web/src/main/java/com/fp/armas/portal/webservices/snap/ruc/.svn/text-base/ConsultarRucResponse.java.svn-base
+++ /dev/null
@@ -1,65 +0,0 @@
-
-package com.fp.armas.portal.webservices.snap.ruc;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-import ec.gov.sri.wsconsultacontribuyente.Contribuyente;
-import ec.gov.sri.wsconsultacontribuyente.ContribuyenteCompleto;
-
-
-/**
- *
- * <complexType name="consultarRucResponse">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="return" type="{http://sri.gov.ec/wsConsultaContribuyente}contribuyente" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "consultarRucResponse", propOrder = {
- "_return"
-})
-public class ConsultarRucResponse {
-
- @XmlElement(name = "return")
- protected ContribuyenteCompleto _return;
-
- /**
- * Obtiene el valor de la propiedad return.
- *
- * @return
- * possible object is
- * {@link ContribuyenteCompleto }
- *
- */
- public ContribuyenteCompleto getReturn() {
- return _return;
- }
-
- /**
- * Define el valor de la propiedad return.
- *
- * @param value
- * allowed object is
- * {@link ContribuyenteCompleto }
- *
- */
- public void setReturn(ContribuyenteCompleto value) {
- this._return = value;
- }
-
-}
diff --git a/web/src/main/java/com/fp/armas/portal/webservices/snap/ruc/.svn/text-base/ObjectFactory.java.svn-base b/web/src/main/java/com/fp/armas/portal/webservices/snap/ruc/.svn/text-base/ObjectFactory.java.svn-base
deleted file mode 100644
index 35333ff..0000000
--- a/web/src/main/java/com/fp/armas/portal/webservices/snap/ruc/.svn/text-base/ObjectFactory.java.svn-base
+++ /dev/null
@@ -1,71 +0,0 @@
-
-package com.fp.armas.portal.webservices.snap.ruc;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the com.fp.webservices.snap.ruc package.
- * features parameter will have their default values.
- * @return
- * returns RucServicio
- */
- @WebEndpoint(name = "RucServicioPort")
- public RucServicio getRucServicioPort(WebServiceFeature... features) {
- return super.getPort(new QName("http://ruc.snap.webservices.fp.com/", "RucServicioPort"), RucServicio.class, features);
- }
-
- private static URL __getWsdlLocation() {
- if (RUCSERVICIOSERVICE_EXCEPTION!= null) {
- throw RUCSERVICIOSERVICE_EXCEPTION;
- }
- return RUCSERVICIOSERVICE_WSDL_LOCATION;
- }
-
-}
diff --git a/web/src/main/java/com/fp/armas/portal/webservices/snap/ruc/.svn/text-base/package-info.java.svn-base b/web/src/main/java/com/fp/armas/portal/webservices/snap/ruc/.svn/text-base/package-info.java.svn-base
deleted file mode 100644
index cd2b949..0000000
--- a/web/src/main/java/com/fp/armas/portal/webservices/snap/ruc/.svn/text-base/package-info.java.svn-base
+++ /dev/null
@@ -1,2 +0,0 @@
-@javax.xml.bind.annotation.XmlSchema(namespace = "http://ruc.snap.webservices.fp.com/")
-package com.fp.armas.portal.webservices.snap.ruc;
diff --git a/web/src/main/java/com/fp/portal/.svn/entries b/web/src/main/java/com/fp/portal/.svn/entries
deleted file mode 100644
index 601d46d..0000000
--- a/web/src/main/java/com/fp/portal/.svn/entries
+++ /dev/null
@@ -1,28 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/web/src/main/java/com/fp/portal
-svn://172.17.26.185/COMACO
-
-
-
-2014-08-24T18:41:28.385000Z
-302
-dcruz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
diff --git a/web/src/main/resources/.svn/entries b/web/src/main/resources/.svn/entries
deleted file mode 100644
index ad59f7a..0000000
--- a/web/src/main/resources/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/web/src/main/resources
-svn://172.17.26.185/COMACO
-
-
-
-2015-04-11T04:38:23.562947Z
-4027
-cpiedra
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-com
-dir
-
diff --git a/web/src/main/resources/com/.svn/entries b/web/src/main/resources/com/.svn/entries
deleted file mode 100644
index c95e3c5..0000000
--- a/web/src/main/resources/com/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/web/src/main/resources/com
-svn://172.17.26.185/COMACO
-
-
-
-2015-04-11T04:38:23.562947Z
-4027
-cpiedra
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-fp
-dir
-
diff --git a/web/src/main/resources/com/fp/.svn/entries b/web/src/main/resources/com/fp/.svn/entries
deleted file mode 100644
index 75da4b1..0000000
--- a/web/src/main/resources/com/fp/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/web/src/main/resources/com/fp
-svn://172.17.26.185/COMACO
-
-
-
-2015-04-11T04:38:23.562947Z
-4027
-cpiedra
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-armas
-dir
-
diff --git a/web/src/main/resources/com/fp/armas/.svn/entries b/web/src/main/resources/com/fp/armas/.svn/entries
deleted file mode 100644
index 076c551..0000000
--- a/web/src/main/resources/com/fp/armas/.svn/entries
+++ /dev/null
@@ -1,31 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/web/src/main/resources/com/fp/armas
-svn://172.17.26.185/COMACO
-
-
-
-2015-04-11T04:38:23.562947Z
-4027
-cpiedra
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-portal
-dir
-
diff --git a/web/src/main/resources/com/fp/armas/portal/.svn/entries b/web/src/main/resources/com/fp/armas/portal/.svn/entries
deleted file mode 100644
index b2706c5..0000000
--- a/web/src/main/resources/com/fp/armas/portal/.svn/entries
+++ /dev/null
@@ -1,62 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/web/src/main/resources/com/fp/armas/portal
-svn://172.17.26.185/COMACO
-
-
-
-2015-04-11T04:38:23.562947Z
-4027
-cpiedra
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-web_portal.properties
-file
-
-
-
-
-2022-07-28T03:45:36.984076Z
-bfa223594c95745674964b739b405ed7
-2015-04-11T04:38:23.562947Z
-4027
-cpiedra
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-6994
-
diff --git a/web/src/main/resources/com/fp/armas/portal/.svn/prop-base/web_portal.properties.svn-base b/web/src/main/resources/com/fp/armas/portal/.svn/prop-base/web_portal.properties.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/web/src/main/resources/com/fp/armas/portal/.svn/prop-base/web_portal.properties.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/web/src/main/resources/com/fp/armas/portal/.svn/text-base/web_portal.properties.svn-base b/web/src/main/resources/com/fp/armas/portal/.svn/text-base/web_portal.properties.svn-base
deleted file mode 100644
index 778efee..0000000
--- a/web/src/main/resources/com/fp/armas/portal/.svn/text-base/web_portal.properties.svn-base
+++ /dev/null
@@ -1,119 +0,0 @@
-###################################################
-##### S\u00edmbolos unicode
-#####\u00e1 -> á
-#####\u00e9 -> é
-#####\u00ed -> í
-#####\u00f3 -> ó
-#####\u00fa -> ú
-#####\u00c1 -> Á
-#####\u00c9 -> É
-#####\u00cd -> Í
-#####\u00d3 -> Ó
-#####\u00da -> Ú
-#####\u00f1 -> ñ
-#####\u00d1 -> Ñ
-#####\u0020 -> Espacio en blanco
-###################################################
-##MENSAJES GENERALES
-lbl_requeridos=Los campos marcados con (*) son obligatorios
-##------------------------------------
-lbl_cargando=Cargando
-
-lbl_registro_usuario=Registro de Usuario
-lbl_tipo_documento=Tipo Documento
-lbl_numero_documento=N\u00FAmero Documento
-lbl_datos_generales=Datos Generales
-lbl_nombre_razon=Nombre/Raz\u00F3n Social
-lbl_nombres=Nombres
-lbl_nombre_completo=Nombre Completo
-lbl_apellido_paterno=Apellido Paterno
-lbl_apellido_materno=Apellido Materno
-lbl_actividad_economica=Actividad Econ\u00F3mica
-lbl_representate_legal=Representante Legal
-lbl_cedula_representante=C\u00E9dula Representante Legal
-lbl_pais_origen=Pa\u00EDs Origen
-lbl_provincia=Provincia
-lbl_canton=Cant\u00F3n
-lbl_ciudad=Ciudad
-lbl_parroquia=Parroquia
-lbl_direccion=Direcci\u00F3n
-lbl_telf_convencional=Tel\u00E9fono Convencional
-lbl_telf_celular=Celular
-lbl_estado_civil=Estado Civil
-lbl_genero=G\u00E9nero
-lbl_estatura=Estatura
-lbl_profesion=Profesi\u00F3n
-lbl_email=Correo Electr\u00F3nico
-lbl_aceptar=Aceptar
-lbl_masculino=Masculino
-lbl_femenino=Femenino
-lbl_cancelar=Cancelar
-lbl_logo=Cargar Logotipo de la Empresa
-
-lbl_vista_expirada=Debido a la inactividad en el portal y por su seguridad, hemos redirigido la petici\u00F3n a otra p\u00E1gina, si desea regresar al registro de usuarios puede hacerlo desde
-lbl_aqui=aqu\u00ED
-
-##MENSAJES DE ERRORES##
-error.msg.persona.registrada=La persona ya est\u00E1 registrada, ingrese con su usuario y password
-error.msg.cedula=El campo ingresado no es una C\u00E9dula v\u00E1lida
-error.msg.ruc=El campo ingresado no es un RUC v\u00E1lido
-error.campo.vacio=El campo es obligatorio
-error.mail.incorrecto=El campo no es un mail v\u00E1lido
-error.celular.incorrecto=El n\u00FAmero celular debe empezar con '09'
-error_captcha=Captcha requerido
-error_valor_captcha=Ingrese los valores correctos del captcha
-
-##MENSAJES NOTIFICACION
-
-mensaje.informativo.correo.enviado=Correo enviado
-url.servidor.maia=https://tramitesarmas.ccffaa.mil.ec/frontend
-url.servidor.registro=https://tramitesarmas.ccffaa.mil.ec/portal-web
-
-#URL DE LOS SERVICIOS MANEJADOS DESDE LA SNAP
-url_snap_servicio_cedula=https://serviciosarmas.ccffaa.mil.ec:8085/serviceCedula?wsdl
-url_snap_servicio_ruc=https://serviciosarmas.ccffaa.mil.ec:8085/serviceRUC?wsdl
-
-#Validaciones JSF
-javax.faces.component.UIInput.REQUIRED=Valor obligatorio.
-javax.faces.component.UIInput.REQUIRED_detail=Valor obligatorio.
-
-javax.faces.converter.BigDecimalConverter.DECIMAL=''{0}'' Debe ser un número decimal.
-javax.faces.converter.BigDecimalConverter.DECIMAL_detail= El campo solo acepta n\u00FAmeros decimales. Ejemplo\: {1}
-javax.faces.converter.BigIntegerConverter.BIGINTEGER=''{0}'' Entero de uno o mu00e1s d\u00EDgitos.
-javax.faces.converter.BigIntegerConverter.BIGINTEGER_detail=''{0}'' Entero de uno o m\u00E1s d\u00EDgitos.
-javax.faces.converter.BooleanConverter.BOOLEAN=''{0}'' Solo acepta 'Verdadero' o 'Falso'.
-javax.faces.converter.BooleanConverter.BOOLEAN_detail=''{0}'' Solo acepta 'Verdadero' o 'Falso'.
-javax.faces.converter.ByteConverter.BYTE=''{0}'' Debe se un n\u00FAmero entre 0 y 255.
-javax.faces.converter.ByteConverter.BYTE_detail=''{0}'' Debe ser un n\u00FAmero entre 0 y 255.
-javax.faces.converter.CharacterConverter.CHARACTER=''{0}'' Debe ser un car\u00E1cter v\u00E1lido.
-javax.faces.converter.CharacterConverter.CHARACTER_detail=''{0}'' Debe ser un car\u00E1cter ASCII v\u00E1lido.
-javax.faces.converter.DateTimeConverter.DATE=''{0}'' Formato de fecha incorrecto. Ejemplo: {1}
-javax.faces.converter.DateTimeConverter.DATE_detail=''{0}'' Formato de fecha incorrecto. Ejemplo: {1}
-javax.faces.converter.DateTimeConverter.TIME=''{0}'' Formato de hora incorrecto.
-javax.faces.converter.DateTimeConverter.TIME_detail=''{0}'' Formato de hora incorrecto. Ejemplo: {1}
-javax.faces.converter.DateTimeConverter.DATETIME=''{0}'' Formato de fecha u hora incorrecto.
-javax.faces.converter.DateTimeConverter.DATETIME_detail=''{0}'' Formato de fecha u hora incorrecto. Ejemplo: {1}
-javax.faces.converter.DateTimeConverter.PATTERN_TYPE=Un 'modelo' o 'tipo' de atributo debe ser especificado para convertir el valor ''{0}''.
-javax.faces.converter.DoubleConverter.DOUBLE=''{0}'' Debe ser un n\u00FAmero de uno o m\u00E1s d\u00EDgitos.
-javax.faces.converter.DoubleConverter.DOUBLE_detail=''{0}'' Debe ser un n\u00FAmero entre 4.9E-324 and 1.7976931348623157E308 Ejemplo\: {1}
-javax.faces.converter.EnumConverter.ENUM=''{0}'' Debe ser convertible a una enumeración.
-javax.faces.converter.EnumConverter.ENUM_detail=''{0}'' Convertible a una enumeración de la enumeración que contiene la constante ''{1}''.
-javax.faces.converter.EnumConverter.ENUM_NO_CLASS=''{0}'' Debe ser convertible a una enumeración, pero no se provee la clase.
-javax.faces.converter.EnumConverter.ENUM_NO_CLASS_detail=''{0}'' Debe ser convertible a una enumeración, pero no se provee la clase.
-javax.faces.converter.FloatConverter.FLOAT=''{0}'' Debe ser un n\u00FAmero de uno o m\u00E1s d\u00EDgitos.
-javax.faces.converter.FloatConverter.FLOAT_detail=''{0}'' Debe ser un n\u00FAmero entre 1.4E-45 y 3.4028235E38 Ejemplo\: {1}
-javax.faces.converter.IntegerConverter.INTEGER=''{0}'' Debe ser un n\u00FAmero de uno o m\u00E1s d\u00EDgitos.
-javax.faces.converter.IntegerConverter.INTEGER_detail=''{0}'' Debe ser un n\u00FAmero entre -2147483648 y 2147483647 Ejemplo\: {1}
-javax.faces.converter.LongConverter.LONG=''{0}'' Debe ser un n\u00FAmero de uno o m\u00E1s d\u00EDgitos.
-javax.faces.converter.LongConverter.LONG_detail=''{0}'' Debe ser un n\u00FAmero entre -9223372036854775808 y 9223372036854775807 Ejemplo\: {1}
-javax.faces.converter.NumberConverter.CURRENCY=''{0}'' Formato de moneda incorrecto.
-javax.faces.converter.NumberConverter.CURRENCY_detail=''{0}'' Formato de moneda incorrecto. Ejemplo: {1}
-javax.faces.converter.NumberConverter.PERCENT=''{0}'' Formato de porcentaje incorrecto.
-javax.faces.converter.NumberConverter.PERCENT_detail=''{0}'' Formato de porcentaje incorrecto. Ejemplo: {1}
-javax.faces.converter.NumberConverter.NUMBER=''{0}'' No es un n\u00FAmero.
-javax.faces.converter.NumberConverter.NUMBER_detail=''{0}'' No es un n\u00FAmero. Ejemplo\: {1}
-javax.faces.converter.NumberConverter.PATTERN=''{0}'' No es un n\u00FAmero modelo.
-javax.faces.converter.NumberConverter.PATTERN_detail=''{0}'' No es un n\u00FAmero modelo. Ejemplo\: {1}
-javax.faces.converter.ShortConverter.SHORT=''{0}'' Debe ser un n\u00FAmero de uno o m\u00E1s d\u00EDgitos.
-javax.faces.converter.ShortConverter.SHORT_detail=''{0}'' Debe ser un n\u00FAmero entre -32768 y 32767. Ejemplo\: {1}
-javax.faces.converter.STRING=No se puede convertir ''{0}'' a un string.
\ No newline at end of file
diff --git a/web/src/main/webapp/.svn/entries b/web/src/main/webapp/.svn/entries
deleted file mode 100644
index 9f46266..0000000
--- a/web/src/main/webapp/.svn/entries
+++ /dev/null
@@ -1,71 +0,0 @@
-10
-
-dir
-4669
-svn://172.17.26.185/COMACO/registro/portal/web/src/main/webapp
-svn://172.17.26.185/COMACO
-
-
-
-2016-03-18T19:27:20.742530Z
-4510
-fpazmino
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-a11ad980-3ca8-45f0-88f7-f0e618c262b7
-
-pages
-dir
-
-index.jsp
-file
-
-
-
-
-2022-07-28T03:45:37.618078Z
-e3610fd1048b60217d42e0eabee99248
-2014-08-15T13:56:33.844127Z
-203
-dcruz
-has-props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-47
-
-WEB-INF
-dir
-
-resources
-dir
-
diff --git a/web/src/main/webapp/.svn/prop-base/index.jsp.svn-base b/web/src/main/webapp/.svn/prop-base/index.jsp.svn-base
deleted file mode 100644
index 138f983..0000000
--- a/web/src/main/webapp/.svn/prop-base/index.jsp.svn-base
+++ /dev/null
@@ -1,5 +0,0 @@
-K 13
-svn:mime-type
-V 10
-text/plain
-END
diff --git a/web/src/main/webapp/.svn/text-base/index.jsp.svn-base b/web/src/main/webapp/.svn/text-base/index.jsp.svn-base
deleted file mode 100644
index 37ed513..0000000
--- a/web/src/main/webapp/.svn/text-base/index.jsp.svn-base
+++ /dev/null
@@ -1 +0,0 @@
-