From 2dfc41b61e0462b557214179d5031ff9848c95f1 Mon Sep 17 00:00:00 2001 From: "igor.rodrigo" Date: Mon, 25 Jul 2016 21:06:05 +0000 Subject: [PATCH] fixes bug 7755 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@58241 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../hstcajservice/ws/BilheteService.java | 261 ++ .../ws/BilheteServiceService.java | 71 + .../hstcajservice/ws/Bilhetes.java | 25 + .../hstcajservice/ws/BuscarBilhetes.java | 222 ++ .../ws/BuscarBilhetesInconsistente.java | 222 ++ .../BuscarBilhetesInconsistenteResponse.java | 69 + .../ws/BuscarBilhetesResponse.java | 69 + .../ws/BuscarReceitaDespesa.java | 195 ++ .../ws/BuscarReceitaDespesaResponse.java | 69 + .../hstcajservice/ws/CadAgencia.java | 60 + .../hstcajservice/ws/CadAgenciaResponse.java | 69 + .../hstcajservice/ws/CadBeneficio.java | 87 + .../ws/CadBeneficioResponse.java | 69 + .../hstcajservice/ws/CadBilheteiro.java | 141 + .../ws/CadBilheteiroResponse.java | 69 + .../hstcajservice/ws/CadCliente.java | 60 + .../hstcajservice/ws/CadClienteResponse.java | 69 + .../hstcajservice/ws/CadEstado.java | 60 + .../hstcajservice/ws/CadEstadoResponse.java | 69 + .../hstcajservice/ws/CadFormaPagamento.java | 60 + .../ws/CadFormaPagamentoResponse.java | 69 + .../hstcajservice/ws/CadLinha.java | 87 + .../hstcajservice/ws/CadLinhaResponse.java | 69 + .../hstcajservice/ws/CadLocalidade.java | 60 + .../ws/CadLocalidadeResponse.java | 69 + .../hstcajservice/ws/CadReceitaDespesa.java | 60 + .../ws/CadReceitaDespesaResponse.java | 69 + .../ws/ExportaIntegracaoCadAgenciaWS.java | 114 + .../ws/ExportaIntegracaoCadBeneficioWS.java | 276 ++ .../ws/ExportaIntegracaoCadBilheteiroWS.java | 168 + .../ws/ExportaIntegracaoCadClienteWS.java | 330 ++ .../ws/ExportaIntegracaoCadEstadoWS.java | 195 ++ .../ExportaIntegracaoCadFormaPagamentoWS.java | 87 + .../ws/ExportaIntegracaoCadLinhaWS.java | 222 ++ .../ws/ExportaIntegracaoCadLocalidadeWS.java | 168 + .../ExportaIntegracaoCadReceitaDespesaWS.java | 195 ++ .../ws/ExportaIntegracaoReceitaDespesaWS.java | 303 ++ .../hstcajservice/ws/ExportaIntegracaoWS.java | 2747 +++++++++++++++++ .../hstcajservice/ws/ObjectFactory.java | 555 ++++ 39 files changed, 7859 insertions(+) create mode 100644 src/com/rjconsultores/hstcajservice/ws/BilheteService.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/BilheteServiceService.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/Bilhetes.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/BuscarBilhetes.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesInconsistente.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesInconsistenteResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/BuscarReceitaDespesa.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/BuscarReceitaDespesaResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadAgencia.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadAgenciaResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadBeneficio.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadBeneficioResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadBilheteiro.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadBilheteiroResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadCliente.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadClienteResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadEstado.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadEstadoResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadFormaPagamento.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadFormaPagamentoResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadLinha.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadLinhaResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadLocalidade.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadLocalidadeResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadReceitaDespesa.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/CadReceitaDespesaResponse.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadAgenciaWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadBeneficioWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadBilheteiroWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadClienteWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadEstadoWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadFormaPagamentoWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadLinhaWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadLocalidadeWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadReceitaDespesaWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoReceitaDespesaWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoWS.java create mode 100644 src/com/rjconsultores/hstcajservice/ws/ObjectFactory.java diff --git a/src/com/rjconsultores/hstcajservice/ws/BilheteService.java b/src/com/rjconsultores/hstcajservice/ws/BilheteService.java new file mode 100644 index 000000000..87a662553 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/BilheteService.java @@ -0,0 +1,261 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.List; +import javax.jws.WebMethod; +import javax.jws.WebParam; +import javax.jws.WebResult; +import javax.jws.WebService; +import javax.xml.bind.annotation.XmlSeeAlso; +import javax.xml.ws.RequestWrapper; +import javax.xml.ws.ResponseWrapper; + + +/** + * This class was generated by the JAX-WS RI. + * JAX-WS RI 2.1.6 in JDK 6 + * Generated source version: 2.1 + * + */ +@WebService(name = "BilheteService", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/") +@XmlSeeAlso({ + ObjectFactory.class +}) +public interface BilheteService { + + + /** + * + * @param dataFim + * @param codEmpresaGrupo + * @param agenciaInicio + * @param fiscal + * @param dataInicio + * @param codEmpresa + * @param agenciaFim + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "buscarBilhetes", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarBilhetes") + @ResponseWrapper(localName = "buscarBilhetesResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarBilhetesResponse") + public List buscarBilhetes( + @WebParam(name = "dataInicio", targetNamespace = "") + String dataInicio, + @WebParam(name = "dataFim", targetNamespace = "") + String dataFim, + @WebParam(name = "agenciaInicio", targetNamespace = "") + String agenciaInicio, + @WebParam(name = "agenciaFim", targetNamespace = "") + String agenciaFim, + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo, + @WebParam(name = "codEmpresa", targetNamespace = "") + String codEmpresa, + @WebParam(name = "fiscal", targetNamespace = "") + String fiscal); + + /** + * + * @param dataFim + * @param codEmpresaGrupo + * @param agenciaInicio + * @param fiscal + * @param dataInicio + * @param codEmpresa + * @param agenciaFim + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "buscarBilhetesInconsistente", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarBilhetesInconsistente") + @ResponseWrapper(localName = "buscarBilhetesInconsistenteResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarBilhetesInconsistenteResponse") + public List buscarBilhetesInconsistente( + @WebParam(name = "dataInicio", targetNamespace = "") + String dataInicio, + @WebParam(name = "dataFim", targetNamespace = "") + String dataFim, + @WebParam(name = "agenciaInicio", targetNamespace = "") + String agenciaInicio, + @WebParam(name = "agenciaFim", targetNamespace = "") + String agenciaFim, + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo, + @WebParam(name = "codEmpresa", targetNamespace = "") + String codEmpresa, + @WebParam(name = "fiscal", targetNamespace = "") + String fiscal); + + /** + * + * @param codEmpresaGrupo + * @param agenciaInicio + * @param codEmpresa + * @param agenciaFim + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "cadBilheteiro", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadBilheteiro") + @ResponseWrapper(localName = "cadBilheteiroResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadBilheteiroResponse") + public List cadBilheteiro( + @WebParam(name = "agenciaInicio", targetNamespace = "") + String agenciaInicio, + @WebParam(name = "agenciaFim", targetNamespace = "") + String agenciaFim, + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo, + @WebParam(name = "codEmpresa", targetNamespace = "") + String codEmpresa); + + /** + * + * @param codEmpresaGrupo + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "cadEstado", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadEstado") + @ResponseWrapper(localName = "cadEstadoResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadEstadoResponse") + public List cadEstado( + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo); + + /** + * + * @param codEmpresaGrupo + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "cadCliente", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadCliente") + @ResponseWrapper(localName = "cadClienteResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadClienteResponse") + public List cadCliente( + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo); + + /** + * + * @param codEmpresaGrupo + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "cadLocalidade", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadLocalidade") + @ResponseWrapper(localName = "cadLocalidadeResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadLocalidadeResponse") + public List cadLocalidade( + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo); + + /** + * + * @param codEmpresaGrupo + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "cadFormaPagamento", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadFormaPagamento") + @ResponseWrapper(localName = "cadFormaPagamentoResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadFormaPagamentoResponse") + public List cadFormaPagamento( + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo); + + /** + * + * @param codEmpresaGrupo + * @param codEmpresa + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "cadLinha", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadLinha") + @ResponseWrapper(localName = "cadLinhaResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadLinhaResponse") + public List cadLinha( + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo, + @WebParam(name = "codEmpresa", targetNamespace = "") + String codEmpresa); + + /** + * + * @param codEmpresaGrupo + * @param codEmpresa + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "cadBeneficio", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadBeneficio") + @ResponseWrapper(localName = "cadBeneficioResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadBeneficioResponse") + public List cadBeneficio( + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo, + @WebParam(name = "codEmpresa", targetNamespace = "") + String codEmpresa); + + /** + * + * @param codEmpresaGrupo + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "cadReceitaDespesa", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadReceitaDespesa") + @ResponseWrapper(localName = "cadReceitaDespesaResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadReceitaDespesaResponse") + public List cadReceitaDespesa( + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo); + + /** + * + * @param codEmpresaGrupo + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "cadAgencia", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadAgencia") + @ResponseWrapper(localName = "cadAgenciaResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadAgenciaResponse") + public List cadAgencia( + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo); + + /** + * + * @param dataFim + * @param codEmpresaGrupo + * @param agenciaInicio + * @param dataInicio + * @param codEmpresa + * @param agenciaFim + * @return + * returns java.util.List + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "buscarReceitaDespesa", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarReceitaDespesa") + @ResponseWrapper(localName = "buscarReceitaDespesaResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarReceitaDespesaResponse") + public List buscarReceitaDespesa( + @WebParam(name = "dataInicio", targetNamespace = "") + String dataInicio, + @WebParam(name = "dataFim", targetNamespace = "") + String dataFim, + @WebParam(name = "agenciaInicio", targetNamespace = "") + String agenciaInicio, + @WebParam(name = "agenciaFim", targetNamespace = "") + String agenciaFim, + @WebParam(name = "codEmpresaGrupo", targetNamespace = "") + Integer codEmpresaGrupo, + @WebParam(name = "codEmpresa", targetNamespace = "") + String codEmpresa); + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/BilheteServiceService.java b/src/com/rjconsultores/hstcajservice/ws/BilheteServiceService.java new file mode 100644 index 000000000..7307fe360 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/BilheteServiceService.java @@ -0,0 +1,71 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.net.MalformedURLException; +import java.net.URL; +import java.util.logging.Logger; +import javax.xml.namespace.QName; +import javax.xml.ws.Service; +import javax.xml.ws.WebEndpoint; +import javax.xml.ws.WebServiceClient; +import javax.xml.ws.WebServiceFeature; + + +/** + * This class was generated by the JAX-WS RI. + * JAX-WS RI 2.1.6 in JDK 6 + * Generated source version: 2.1 + * + */ +@WebServiceClient(name = "BilheteServiceService", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", wsdlLocation = "http://52.72.4.158:8280/WSIntegracao/BilheteService?wsdl") +public class BilheteServiceService + extends Service +{ + + private final static URL BILHETESERVICESERVICE_WSDL_LOCATION; + private final static Logger logger = Logger.getLogger(com.rjconsultores.hstcajservice.ws.BilheteServiceService.class.getName()); + + static { + URL url = null; + try { + URL baseUrl; + baseUrl = com.rjconsultores.hstcajservice.ws.BilheteServiceService.class.getResource("."); + url = new URL(baseUrl, "http://52.72.4.158:8280/WSIntegracao/BilheteService?wsdl"); + } catch (MalformedURLException e) { + logger.warning("Failed to create URL for the wsdl Location: 'http://52.72.4.158:8280/WSIntegracao/BilheteService?wsdl', retrying as a local file"); + logger.warning(e.getMessage()); + } + BILHETESERVICESERVICE_WSDL_LOCATION = url; + } + + public BilheteServiceService(URL wsdlLocation, QName serviceName) { + super(wsdlLocation, serviceName); + } + + public BilheteServiceService() { + super(BILHETESERVICESERVICE_WSDL_LOCATION, new QName("http://ws.hstcajservice.rjconsultores.com/", "BilheteServiceService")); + } + + /** + * + * @return + * returns BilheteService + */ + @WebEndpoint(name = "BilheteServicePort") + public BilheteService getBilheteServicePort() { + return super.getPort(new QName("http://ws.hstcajservice.rjconsultores.com/", "BilheteServicePort"), BilheteService.class); + } + + /** + * + * @param features + * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. + * @return + * returns BilheteService + */ + @WebEndpoint(name = "BilheteServicePort") + public BilheteService getBilheteServicePort(WebServiceFeature... features) { + return super.getPort(new QName("http://ws.hstcajservice.rjconsultores.com/", "BilheteServicePort"), BilheteService.class, features); + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/Bilhetes.java b/src/com/rjconsultores/hstcajservice/ws/Bilhetes.java new file mode 100644 index 000000000..5aa96c2f5 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/Bilhetes.java @@ -0,0 +1,25 @@ +package com.rjconsultores.hstcajservice.ws; + +import java.util.List; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; + +import com.rjconsultores.hstcajservice.ws.ExportaIntegracaoWS; +@XmlRootElement(name = "bilhetes") +@XmlAccessorType (XmlAccessType.FIELD) +public class Bilhetes { + @XmlElement(name = "bilhete") + private List bilhetes = null; + + public List getBilhete() { + return bilhetes; + } + + public void setBilhetes(List bilhete) { + this.bilhetes = bilhete; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetes.java b/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetes.java new file mode 100644 index 000000000..9a03f6ecf --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetes.java @@ -0,0 +1,222 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for buscarBilhetes complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="buscarBilhetes">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fiscal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "buscarBilhetes", propOrder = { + "dataInicio", + "dataFim", + "agenciaInicio", + "agenciaFim", + "codEmpresaGrupo", + "codEmpresa", + "fiscal" +}) +public class BuscarBilhetes { + + protected String dataInicio; + protected String dataFim; + protected String agenciaInicio; + protected String agenciaFim; + protected Integer codEmpresaGrupo; + protected String codEmpresa; + protected String fiscal; + + /** + * Gets the value of the dataInicio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataInicio() { + return dataInicio; + } + + /** + * Sets the value of the dataInicio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataInicio(String value) { + this.dataInicio = value; + } + + /** + * Gets the value of the dataFim property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataFim() { + return dataFim; + } + + /** + * Sets the value of the dataFim property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataFim(String value) { + this.dataFim = value; + } + + /** + * Gets the value of the agenciaInicio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaInicio() { + return agenciaInicio; + } + + /** + * Sets the value of the agenciaInicio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaInicio(String value) { + this.agenciaInicio = value; + } + + /** + * Gets the value of the agenciaFim property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaFim() { + return agenciaFim; + } + + /** + * Sets the value of the agenciaFim property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaFim(String value) { + this.agenciaFim = value; + } + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + + /** + * Gets the value of the codEmpresa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEmpresa() { + return codEmpresa; + } + + /** + * Sets the value of the codEmpresa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEmpresa(String value) { + this.codEmpresa = value; + } + + /** + * Gets the value of the fiscal property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFiscal() { + return fiscal; + } + + /** + * Sets the value of the fiscal property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFiscal(String value) { + this.fiscal = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesInconsistente.java b/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesInconsistente.java new file mode 100644 index 000000000..17b9bdcf5 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesInconsistente.java @@ -0,0 +1,222 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for buscarBilhetesInconsistente complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="buscarBilhetesInconsistente">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fiscal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "buscarBilhetesInconsistente", propOrder = { + "dataInicio", + "dataFim", + "agenciaInicio", + "agenciaFim", + "codEmpresaGrupo", + "codEmpresa", + "fiscal" +}) +public class BuscarBilhetesInconsistente { + + protected String dataInicio; + protected String dataFim; + protected String agenciaInicio; + protected String agenciaFim; + protected Integer codEmpresaGrupo; + protected String codEmpresa; + protected String fiscal; + + /** + * Gets the value of the dataInicio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataInicio() { + return dataInicio; + } + + /** + * Sets the value of the dataInicio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataInicio(String value) { + this.dataInicio = value; + } + + /** + * Gets the value of the dataFim property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataFim() { + return dataFim; + } + + /** + * Sets the value of the dataFim property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataFim(String value) { + this.dataFim = value; + } + + /** + * Gets the value of the agenciaInicio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaInicio() { + return agenciaInicio; + } + + /** + * Sets the value of the agenciaInicio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaInicio(String value) { + this.agenciaInicio = value; + } + + /** + * Gets the value of the agenciaFim property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaFim() { + return agenciaFim; + } + + /** + * Sets the value of the agenciaFim property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaFim(String value) { + this.agenciaFim = value; + } + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + + /** + * Gets the value of the codEmpresa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEmpresa() { + return codEmpresa; + } + + /** + * Sets the value of the codEmpresa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEmpresa(String value) { + this.codEmpresa = value; + } + + /** + * Gets the value of the fiscal property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFiscal() { + return fiscal; + } + + /** + * Sets the value of the fiscal property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFiscal(String value) { + this.fiscal = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesInconsistenteResponse.java b/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesInconsistenteResponse.java new file mode 100644 index 000000000..2c386e362 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesInconsistenteResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for buscarBilhetesInconsistenteResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="buscarBilhetesInconsistenteResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "buscarBilhetesInconsistenteResponse", propOrder = { + "_return" +}) +public class BuscarBilhetesInconsistenteResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesResponse.java b/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesResponse.java new file mode 100644 index 000000000..d21b4d154 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/BuscarBilhetesResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for buscarBilhetesResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="buscarBilhetesResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "buscarBilhetesResponse", propOrder = { + "_return" +}) +public class BuscarBilhetesResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/BuscarReceitaDespesa.java b/src/com/rjconsultores/hstcajservice/ws/BuscarReceitaDespesa.java new file mode 100644 index 000000000..adeee4d09 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/BuscarReceitaDespesa.java @@ -0,0 +1,195 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for buscarReceitaDespesa complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="buscarReceitaDespesa">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "buscarReceitaDespesa", propOrder = { + "dataInicio", + "dataFim", + "agenciaInicio", + "agenciaFim", + "codEmpresaGrupo", + "codEmpresa" +}) +public class BuscarReceitaDespesa { + + protected String dataInicio; + protected String dataFim; + protected String agenciaInicio; + protected String agenciaFim; + protected Integer codEmpresaGrupo; + protected String codEmpresa; + + /** + * Gets the value of the dataInicio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataInicio() { + return dataInicio; + } + + /** + * Sets the value of the dataInicio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataInicio(String value) { + this.dataInicio = value; + } + + /** + * Gets the value of the dataFim property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataFim() { + return dataFim; + } + + /** + * Sets the value of the dataFim property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataFim(String value) { + this.dataFim = value; + } + + /** + * Gets the value of the agenciaInicio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaInicio() { + return agenciaInicio; + } + + /** + * Sets the value of the agenciaInicio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaInicio(String value) { + this.agenciaInicio = value; + } + + /** + * Gets the value of the agenciaFim property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaFim() { + return agenciaFim; + } + + /** + * Sets the value of the agenciaFim property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaFim(String value) { + this.agenciaFim = value; + } + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + + /** + * Gets the value of the codEmpresa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEmpresa() { + return codEmpresa; + } + + /** + * Sets the value of the codEmpresa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEmpresa(String value) { + this.codEmpresa = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/BuscarReceitaDespesaResponse.java b/src/com/rjconsultores/hstcajservice/ws/BuscarReceitaDespesaResponse.java new file mode 100644 index 000000000..3100ff126 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/BuscarReceitaDespesaResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for buscarReceitaDespesaResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="buscarReceitaDespesaResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoReceitaDespesaWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "buscarReceitaDespesaResponse", propOrder = { + "_return" +}) +public class BuscarReceitaDespesaResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoReceitaDespesaWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadAgencia.java b/src/com/rjconsultores/hstcajservice/ws/CadAgencia.java new file mode 100644 index 000000000..549038a8f --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadAgencia.java @@ -0,0 +1,60 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadAgencia complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadAgencia">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadAgencia", propOrder = { + "codEmpresaGrupo" +}) +public class CadAgencia { + + protected Integer codEmpresaGrupo; + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadAgenciaResponse.java b/src/com/rjconsultores/hstcajservice/ws/CadAgenciaResponse.java new file mode 100644 index 000000000..1634a3112 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadAgenciaResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadAgenciaResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadAgenciaResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadAgenciaWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadAgenciaResponse", propOrder = { + "_return" +}) +public class CadAgenciaResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoCadAgenciaWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadBeneficio.java b/src/com/rjconsultores/hstcajservice/ws/CadBeneficio.java new file mode 100644 index 000000000..ce149361e --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadBeneficio.java @@ -0,0 +1,87 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadBeneficio complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadBeneficio">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadBeneficio", propOrder = { + "codEmpresaGrupo", + "codEmpresa" +}) +public class CadBeneficio { + + protected Integer codEmpresaGrupo; + protected String codEmpresa; + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + + /** + * Gets the value of the codEmpresa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEmpresa() { + return codEmpresa; + } + + /** + * Sets the value of the codEmpresa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEmpresa(String value) { + this.codEmpresa = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadBeneficioResponse.java b/src/com/rjconsultores/hstcajservice/ws/CadBeneficioResponse.java new file mode 100644 index 000000000..603ceb964 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadBeneficioResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadBeneficioResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadBeneficioResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadBeneficioWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadBeneficioResponse", propOrder = { + "_return" +}) +public class CadBeneficioResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoCadBeneficioWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadBilheteiro.java b/src/com/rjconsultores/hstcajservice/ws/CadBilheteiro.java new file mode 100644 index 000000000..4083be991 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadBilheteiro.java @@ -0,0 +1,141 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadBilheteiro complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadBilheteiro">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadBilheteiro", propOrder = { + "agenciaInicio", + "agenciaFim", + "codEmpresaGrupo", + "codEmpresa" +}) +public class CadBilheteiro { + + protected String agenciaInicio; + protected String agenciaFim; + protected Integer codEmpresaGrupo; + protected String codEmpresa; + + /** + * Gets the value of the agenciaInicio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaInicio() { + return agenciaInicio; + } + + /** + * Sets the value of the agenciaInicio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaInicio(String value) { + this.agenciaInicio = value; + } + + /** + * Gets the value of the agenciaFim property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaFim() { + return agenciaFim; + } + + /** + * Sets the value of the agenciaFim property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaFim(String value) { + this.agenciaFim = value; + } + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + + /** + * Gets the value of the codEmpresa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEmpresa() { + return codEmpresa; + } + + /** + * Sets the value of the codEmpresa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEmpresa(String value) { + this.codEmpresa = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadBilheteiroResponse.java b/src/com/rjconsultores/hstcajservice/ws/CadBilheteiroResponse.java new file mode 100644 index 000000000..4db9aa049 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadBilheteiroResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadBilheteiroResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadBilheteiroResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadBilheteiroWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadBilheteiroResponse", propOrder = { + "_return" +}) +public class CadBilheteiroResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoCadBilheteiroWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadCliente.java b/src/com/rjconsultores/hstcajservice/ws/CadCliente.java new file mode 100644 index 000000000..3e996b6fa --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadCliente.java @@ -0,0 +1,60 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadCliente complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadCliente">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadCliente", propOrder = { + "codEmpresaGrupo" +}) +public class CadCliente { + + protected Integer codEmpresaGrupo; + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadClienteResponse.java b/src/com/rjconsultores/hstcajservice/ws/CadClienteResponse.java new file mode 100644 index 000000000..fa2797705 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadClienteResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadClienteResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadClienteResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadClienteWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadClienteResponse", propOrder = { + "_return" +}) +public class CadClienteResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoCadClienteWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadEstado.java b/src/com/rjconsultores/hstcajservice/ws/CadEstado.java new file mode 100644 index 000000000..a12018c32 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadEstado.java @@ -0,0 +1,60 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadEstado complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadEstado">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadEstado", propOrder = { + "codEmpresaGrupo" +}) +public class CadEstado { + + protected Integer codEmpresaGrupo; + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadEstadoResponse.java b/src/com/rjconsultores/hstcajservice/ws/CadEstadoResponse.java new file mode 100644 index 000000000..e71a7504a --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadEstadoResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadEstadoResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadEstadoResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadEstadoWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadEstadoResponse", propOrder = { + "_return" +}) +public class CadEstadoResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoCadEstadoWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadFormaPagamento.java b/src/com/rjconsultores/hstcajservice/ws/CadFormaPagamento.java new file mode 100644 index 000000000..0faed4b46 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadFormaPagamento.java @@ -0,0 +1,60 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadFormaPagamento complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadFormaPagamento">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadFormaPagamento", propOrder = { + "codEmpresaGrupo" +}) +public class CadFormaPagamento { + + protected Integer codEmpresaGrupo; + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadFormaPagamentoResponse.java b/src/com/rjconsultores/hstcajservice/ws/CadFormaPagamentoResponse.java new file mode 100644 index 000000000..3736a8a08 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadFormaPagamentoResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadFormaPagamentoResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadFormaPagamentoResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadFormaPagamentoWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadFormaPagamentoResponse", propOrder = { + "_return" +}) +public class CadFormaPagamentoResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoCadFormaPagamentoWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadLinha.java b/src/com/rjconsultores/hstcajservice/ws/CadLinha.java new file mode 100644 index 000000000..3ea8d4c1f --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadLinha.java @@ -0,0 +1,87 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadLinha complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadLinha">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadLinha", propOrder = { + "codEmpresaGrupo", + "codEmpresa" +}) +public class CadLinha { + + protected Integer codEmpresaGrupo; + protected String codEmpresa; + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + + /** + * Gets the value of the codEmpresa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEmpresa() { + return codEmpresa; + } + + /** + * Sets the value of the codEmpresa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEmpresa(String value) { + this.codEmpresa = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadLinhaResponse.java b/src/com/rjconsultores/hstcajservice/ws/CadLinhaResponse.java new file mode 100644 index 000000000..aa87c4d26 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadLinhaResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadLinhaResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadLinhaResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadLinhaWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadLinhaResponse", propOrder = { + "_return" +}) +public class CadLinhaResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoCadLinhaWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadLocalidade.java b/src/com/rjconsultores/hstcajservice/ws/CadLocalidade.java new file mode 100644 index 000000000..c72a5a67f --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadLocalidade.java @@ -0,0 +1,60 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadLocalidade complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadLocalidade">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadLocalidade", propOrder = { + "codEmpresaGrupo" +}) +public class CadLocalidade { + + protected Integer codEmpresaGrupo; + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadLocalidadeResponse.java b/src/com/rjconsultores/hstcajservice/ws/CadLocalidadeResponse.java new file mode 100644 index 000000000..54daf2a3a --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadLocalidadeResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadLocalidadeResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadLocalidadeResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadLocalidadeWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadLocalidadeResponse", propOrder = { + "_return" +}) +public class CadLocalidadeResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoCadLocalidadeWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadReceitaDespesa.java b/src/com/rjconsultores/hstcajservice/ws/CadReceitaDespesa.java new file mode 100644 index 000000000..3f52d095d --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadReceitaDespesa.java @@ -0,0 +1,60 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadReceitaDespesa complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadReceitaDespesa">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadReceitaDespesa", propOrder = { + "codEmpresaGrupo" +}) +public class CadReceitaDespesa { + + protected Integer codEmpresaGrupo; + + /** + * Gets the value of the codEmpresaGrupo property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCodEmpresaGrupo() { + return codEmpresaGrupo; + } + + /** + * Sets the value of the codEmpresaGrupo property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCodEmpresaGrupo(Integer value) { + this.codEmpresaGrupo = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/CadReceitaDespesaResponse.java b/src/com/rjconsultores/hstcajservice/ws/CadReceitaDespesaResponse.java new file mode 100644 index 000000000..17f03f10f --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/CadReceitaDespesaResponse.java @@ -0,0 +1,69 @@ + +package com.rjconsultores.hstcajservice.ws; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for cadReceitaDespesaResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="cadReceitaDespesaResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadReceitaDespesaWS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cadReceitaDespesaResponse", propOrder = { + "_return" +}) +public class CadReceitaDespesaResponse { + + @XmlElement(name = "return") + protected List _return; + + /** + * Gets the value of the return property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the return property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ExportaIntegracaoCadReceitaDespesaWS } + * + * + */ + public List getReturn() { + if (_return == null) { + _return = new ArrayList(); + } + return this._return; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadAgenciaWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadAgenciaWS.java new file mode 100644 index 000000000..f303b0986 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadAgenciaWS.java @@ -0,0 +1,114 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoCadAgenciaWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoCadAgenciaWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="ativo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codAgencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="descAgencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoCadAgenciaWS", propOrder = { + "ativo", + "codAgencia", + "descAgencia" +}) +public class ExportaIntegracaoCadAgenciaWS { + + protected String ativo; + protected String codAgencia; + protected String descAgencia; + + /** + * Gets the value of the ativo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAtivo() { + return ativo; + } + + /** + * Sets the value of the ativo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAtivo(String value) { + this.ativo = value; + } + + /** + * Gets the value of the codAgencia property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodAgencia() { + return codAgencia; + } + + /** + * Sets the value of the codAgencia property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodAgencia(String value) { + this.codAgencia = value; + } + + /** + * Gets the value of the descAgencia property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescAgencia() { + return descAgencia; + } + + /** + * Sets the value of the descAgencia property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescAgencia(String value) { + this.descAgencia = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadBeneficioWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadBeneficioWS.java new file mode 100644 index 000000000..c85f2bd4a --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadBeneficioWS.java @@ -0,0 +1,276 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoCadBeneficioWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoCadBeneficioWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="classeBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="descontoBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="descricaoBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="empresaBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="linhaBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="orgConcedLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="temTaxaEmbarque" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="temTaxaSeguro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoCadBeneficioWS", propOrder = { + "classeBeneficio", + "codBeneficio", + "descontoBeneficio", + "descricaoBeneficio", + "empresaBeneficio", + "linhaBeneficio", + "orgConcedLinha", + "temTaxaEmbarque", + "temTaxaSeguro" +}) +public class ExportaIntegracaoCadBeneficioWS { + + protected String classeBeneficio; + protected String codBeneficio; + protected String descontoBeneficio; + protected String descricaoBeneficio; + protected String empresaBeneficio; + protected String linhaBeneficio; + protected String orgConcedLinha; + protected String temTaxaEmbarque; + protected String temTaxaSeguro; + + /** + * Gets the value of the classeBeneficio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClasseBeneficio() { + return classeBeneficio; + } + + /** + * Sets the value of the classeBeneficio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClasseBeneficio(String value) { + this.classeBeneficio = value; + } + + /** + * Gets the value of the codBeneficio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodBeneficio() { + return codBeneficio; + } + + /** + * Sets the value of the codBeneficio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodBeneficio(String value) { + this.codBeneficio = value; + } + + /** + * Gets the value of the descontoBeneficio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescontoBeneficio() { + return descontoBeneficio; + } + + /** + * Sets the value of the descontoBeneficio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescontoBeneficio(String value) { + this.descontoBeneficio = value; + } + + /** + * Gets the value of the descricaoBeneficio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescricaoBeneficio() { + return descricaoBeneficio; + } + + /** + * Sets the value of the descricaoBeneficio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescricaoBeneficio(String value) { + this.descricaoBeneficio = value; + } + + /** + * Gets the value of the empresaBeneficio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmpresaBeneficio() { + return empresaBeneficio; + } + + /** + * Sets the value of the empresaBeneficio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmpresaBeneficio(String value) { + this.empresaBeneficio = value; + } + + /** + * Gets the value of the linhaBeneficio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLinhaBeneficio() { + return linhaBeneficio; + } + + /** + * Sets the value of the linhaBeneficio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLinhaBeneficio(String value) { + this.linhaBeneficio = value; + } + + /** + * Gets the value of the orgConcedLinha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrgConcedLinha() { + return orgConcedLinha; + } + + /** + * Sets the value of the orgConcedLinha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrgConcedLinha(String value) { + this.orgConcedLinha = value; + } + + /** + * Gets the value of the temTaxaEmbarque property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTemTaxaEmbarque() { + return temTaxaEmbarque; + } + + /** + * Sets the value of the temTaxaEmbarque property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTemTaxaEmbarque(String value) { + this.temTaxaEmbarque = value; + } + + /** + * Gets the value of the temTaxaSeguro property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTemTaxaSeguro() { + return temTaxaSeguro; + } + + /** + * Sets the value of the temTaxaSeguro property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTemTaxaSeguro(String value) { + this.temTaxaSeguro = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadBilheteiroWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadBilheteiroWS.java new file mode 100644 index 000000000..3df13824d --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadBilheteiroWS.java @@ -0,0 +1,168 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoCadBilheteiroWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoCadBilheteiroWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="agenciaBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ativo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="documentoBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="nomeBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoCadBilheteiroWS", propOrder = { + "agenciaBilheteiro", + "ativo", + "codBilheteiro", + "documentoBilheteiro", + "nomeBilheteiro" +}) +public class ExportaIntegracaoCadBilheteiroWS { + + protected String agenciaBilheteiro; + protected String ativo; + protected String codBilheteiro; + protected String documentoBilheteiro; + protected String nomeBilheteiro; + + /** + * Gets the value of the agenciaBilheteiro property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaBilheteiro() { + return agenciaBilheteiro; + } + + /** + * Sets the value of the agenciaBilheteiro property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaBilheteiro(String value) { + this.agenciaBilheteiro = value; + } + + /** + * Gets the value of the ativo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAtivo() { + return ativo; + } + + /** + * Sets the value of the ativo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAtivo(String value) { + this.ativo = value; + } + + /** + * Gets the value of the codBilheteiro property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodBilheteiro() { + return codBilheteiro; + } + + /** + * Sets the value of the codBilheteiro property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodBilheteiro(String value) { + this.codBilheteiro = value; + } + + /** + * Gets the value of the documentoBilheteiro property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocumentoBilheteiro() { + return documentoBilheteiro; + } + + /** + * Sets the value of the documentoBilheteiro property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocumentoBilheteiro(String value) { + this.documentoBilheteiro = value; + } + + /** + * Gets the value of the nomeBilheteiro property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNomeBilheteiro() { + return nomeBilheteiro; + } + + /** + * Sets the value of the nomeBilheteiro property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNomeBilheteiro(String value) { + this.nomeBilheteiro = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadClienteWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadClienteWS.java new file mode 100644 index 000000000..4af301985 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadClienteWS.java @@ -0,0 +1,330 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoCadClienteWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoCadClienteWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="bairroCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="cepCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataNascCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="emailCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="nacioCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="nomeCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numDocCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ruaCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="tipoDocCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoCadClienteWS", propOrder = { + "bairroCli", + "cepCli", + "codCli", + "dataNascCli", + "emailCli", + "nacioCli", + "nomeCli", + "numDocCli", + "ruaCli", + "telCli", + "tipoDocCli" +}) +public class ExportaIntegracaoCadClienteWS { + + protected String bairroCli; + protected String cepCli; + protected String codCli; + protected String dataNascCli; + protected String emailCli; + protected String nacioCli; + protected String nomeCli; + protected String numDocCli; + protected String ruaCli; + protected String telCli; + protected String tipoDocCli; + + /** + * Gets the value of the bairroCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBairroCli() { + return bairroCli; + } + + /** + * Sets the value of the bairroCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBairroCli(String value) { + this.bairroCli = value; + } + + /** + * Gets the value of the cepCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCepCli() { + return cepCli; + } + + /** + * Sets the value of the cepCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCepCli(String value) { + this.cepCli = value; + } + + /** + * Gets the value of the codCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodCli() { + return codCli; + } + + /** + * Sets the value of the codCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodCli(String value) { + this.codCli = value; + } + + /** + * Gets the value of the dataNascCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataNascCli() { + return dataNascCli; + } + + /** + * Sets the value of the dataNascCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataNascCli(String value) { + this.dataNascCli = value; + } + + /** + * Gets the value of the emailCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmailCli() { + return emailCli; + } + + /** + * Sets the value of the emailCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmailCli(String value) { + this.emailCli = value; + } + + /** + * Gets the value of the nacioCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNacioCli() { + return nacioCli; + } + + /** + * Sets the value of the nacioCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNacioCli(String value) { + this.nacioCli = value; + } + + /** + * Gets the value of the nomeCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNomeCli() { + return nomeCli; + } + + /** + * Sets the value of the nomeCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNomeCli(String value) { + this.nomeCli = value; + } + + /** + * Gets the value of the numDocCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumDocCli() { + return numDocCli; + } + + /** + * Sets the value of the numDocCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumDocCli(String value) { + this.numDocCli = value; + } + + /** + * Gets the value of the ruaCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRuaCli() { + return ruaCli; + } + + /** + * Sets the value of the ruaCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRuaCli(String value) { + this.ruaCli = value; + } + + /** + * Gets the value of the telCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelCli() { + return telCli; + } + + /** + * Sets the value of the telCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelCli(String value) { + this.telCli = value; + } + + /** + * Gets the value of the tipoDocCli property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTipoDocCli() { + return tipoDocCli; + } + + /** + * Sets the value of the tipoDocCli property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTipoDocCli(String value) { + this.tipoDocCli = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadEstadoWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadEstadoWS.java new file mode 100644 index 000000000..f5d82311d --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadEstadoWS.java @@ -0,0 +1,195 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoCadEstadoWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoCadEstadoWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codServidorEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="descEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="siglaEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="taxaEmbarqueEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="valorICMSEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoCadEstadoWS", propOrder = { + "codEstado", + "codServidorEstado", + "descEstado", + "siglaEstado", + "taxaEmbarqueEstado", + "valorICMSEstado" +}) +public class ExportaIntegracaoCadEstadoWS { + + protected String codEstado; + protected String codServidorEstado; + protected String descEstado; + protected String siglaEstado; + protected String taxaEmbarqueEstado; + protected String valorICMSEstado; + + /** + * Gets the value of the codEstado property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEstado() { + return codEstado; + } + + /** + * Sets the value of the codEstado property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEstado(String value) { + this.codEstado = value; + } + + /** + * Gets the value of the codServidorEstado property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodServidorEstado() { + return codServidorEstado; + } + + /** + * Sets the value of the codServidorEstado property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodServidorEstado(String value) { + this.codServidorEstado = value; + } + + /** + * Gets the value of the descEstado property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescEstado() { + return descEstado; + } + + /** + * Sets the value of the descEstado property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescEstado(String value) { + this.descEstado = value; + } + + /** + * Gets the value of the siglaEstado property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSiglaEstado() { + return siglaEstado; + } + + /** + * Sets the value of the siglaEstado property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSiglaEstado(String value) { + this.siglaEstado = value; + } + + /** + * Gets the value of the taxaEmbarqueEstado property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTaxaEmbarqueEstado() { + return taxaEmbarqueEstado; + } + + /** + * Sets the value of the taxaEmbarqueEstado property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTaxaEmbarqueEstado(String value) { + this.taxaEmbarqueEstado = value; + } + + /** + * Gets the value of the valorICMSEstado property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValorICMSEstado() { + return valorICMSEstado; + } + + /** + * Sets the value of the valorICMSEstado property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValorICMSEstado(String value) { + this.valorICMSEstado = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadFormaPagamentoWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadFormaPagamentoWS.java new file mode 100644 index 000000000..9de2c6d06 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadFormaPagamentoWS.java @@ -0,0 +1,87 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoCadFormaPagamentoWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoCadFormaPagamentoWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codFormaPag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="descFormaPag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoCadFormaPagamentoWS", propOrder = { + "codFormaPag", + "descFormaPag" +}) +public class ExportaIntegracaoCadFormaPagamentoWS { + + protected String codFormaPag; + protected String descFormaPag; + + /** + * Gets the value of the codFormaPag property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodFormaPag() { + return codFormaPag; + } + + /** + * Sets the value of the codFormaPag property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodFormaPag(String value) { + this.codFormaPag = value; + } + + /** + * Gets the value of the descFormaPag property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescFormaPag() { + return descFormaPag; + } + + /** + * Sets the value of the descFormaPag property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescFormaPag(String value) { + this.descFormaPag = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadLinhaWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadLinhaWS.java new file mode 100644 index 000000000..5523ed2e5 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadLinhaWS.java @@ -0,0 +1,222 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoCadLinhaWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoCadLinhaWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="classeLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codEmpresaLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="descLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="detalheLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="orgConcedLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prefixoLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoCadLinhaWS", propOrder = { + "classeLinha", + "codEmpresaLinha", + "codLinha", + "descLinha", + "detalheLinha", + "orgConcedLinha", + "prefixoLinha" +}) +public class ExportaIntegracaoCadLinhaWS { + + protected String classeLinha; + protected String codEmpresaLinha; + protected String codLinha; + protected String descLinha; + protected String detalheLinha; + protected String orgConcedLinha; + protected String prefixoLinha; + + /** + * Gets the value of the classeLinha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClasseLinha() { + return classeLinha; + } + + /** + * Sets the value of the classeLinha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClasseLinha(String value) { + this.classeLinha = value; + } + + /** + * Gets the value of the codEmpresaLinha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEmpresaLinha() { + return codEmpresaLinha; + } + + /** + * Sets the value of the codEmpresaLinha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEmpresaLinha(String value) { + this.codEmpresaLinha = value; + } + + /** + * Gets the value of the codLinha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodLinha() { + return codLinha; + } + + /** + * Sets the value of the codLinha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodLinha(String value) { + this.codLinha = value; + } + + /** + * Gets the value of the descLinha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescLinha() { + return descLinha; + } + + /** + * Sets the value of the descLinha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescLinha(String value) { + this.descLinha = value; + } + + /** + * Gets the value of the detalheLinha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDetalheLinha() { + return detalheLinha; + } + + /** + * Sets the value of the detalheLinha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDetalheLinha(String value) { + this.detalheLinha = value; + } + + /** + * Gets the value of the orgConcedLinha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrgConcedLinha() { + return orgConcedLinha; + } + + /** + * Sets the value of the orgConcedLinha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrgConcedLinha(String value) { + this.orgConcedLinha = value; + } + + /** + * Gets the value of the prefixoLinha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefixoLinha() { + return prefixoLinha; + } + + /** + * Sets the value of the prefixoLinha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefixoLinha(String value) { + this.prefixoLinha = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadLocalidadeWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadLocalidadeWS.java new file mode 100644 index 000000000..b621352dd --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadLocalidadeWS.java @@ -0,0 +1,168 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoCadLocalidadeWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoCadLocalidadeWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codEstadoLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="descLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="siglaLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="taxaRodoviariaLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoCadLocalidadeWS", propOrder = { + "codEstadoLocalidade", + "codLocalidade", + "descLocalidade", + "siglaLocalidade", + "taxaRodoviariaLocalidade" +}) +public class ExportaIntegracaoCadLocalidadeWS { + + protected String codEstadoLocalidade; + protected String codLocalidade; + protected String descLocalidade; + protected String siglaLocalidade; + protected String taxaRodoviariaLocalidade; + + /** + * Gets the value of the codEstadoLocalidade property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEstadoLocalidade() { + return codEstadoLocalidade; + } + + /** + * Sets the value of the codEstadoLocalidade property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEstadoLocalidade(String value) { + this.codEstadoLocalidade = value; + } + + /** + * Gets the value of the codLocalidade property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodLocalidade() { + return codLocalidade; + } + + /** + * Sets the value of the codLocalidade property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodLocalidade(String value) { + this.codLocalidade = value; + } + + /** + * Gets the value of the descLocalidade property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescLocalidade() { + return descLocalidade; + } + + /** + * Sets the value of the descLocalidade property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescLocalidade(String value) { + this.descLocalidade = value; + } + + /** + * Gets the value of the siglaLocalidade property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSiglaLocalidade() { + return siglaLocalidade; + } + + /** + * Sets the value of the siglaLocalidade property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSiglaLocalidade(String value) { + this.siglaLocalidade = value; + } + + /** + * Gets the value of the taxaRodoviariaLocalidade property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTaxaRodoviariaLocalidade() { + return taxaRodoviariaLocalidade; + } + + /** + * Sets the value of the taxaRodoviariaLocalidade property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTaxaRodoviariaLocalidade(String value) { + this.taxaRodoviariaLocalidade = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadReceitaDespesaWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadReceitaDespesaWS.java new file mode 100644 index 000000000..e59ae77fa --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoCadReceitaDespesaWS.java @@ -0,0 +1,195 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoCadReceitaDespesaWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoCadReceitaDespesaWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="codAgenciaReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codEmpresaReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credDebitoReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="descReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="formaPagReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoCadReceitaDespesaWS", propOrder = { + "codAgenciaReceitaDespesa", + "codEmpresaReceitaDespesa", + "codReceitaDespesa", + "credDebitoReceitaDespesa", + "descReceitaDespesa", + "formaPagReceitaDespesa" +}) +public class ExportaIntegracaoCadReceitaDespesaWS { + + protected String codAgenciaReceitaDespesa; + protected String codEmpresaReceitaDespesa; + protected String codReceitaDespesa; + protected String credDebitoReceitaDespesa; + protected String descReceitaDespesa; + protected String formaPagReceitaDespesa; + + /** + * Gets the value of the codAgenciaReceitaDespesa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodAgenciaReceitaDespesa() { + return codAgenciaReceitaDespesa; + } + + /** + * Sets the value of the codAgenciaReceitaDespesa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodAgenciaReceitaDespesa(String value) { + this.codAgenciaReceitaDespesa = value; + } + + /** + * Gets the value of the codEmpresaReceitaDespesa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEmpresaReceitaDespesa() { + return codEmpresaReceitaDespesa; + } + + /** + * Sets the value of the codEmpresaReceitaDespesa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEmpresaReceitaDespesa(String value) { + this.codEmpresaReceitaDespesa = value; + } + + /** + * Gets the value of the codReceitaDespesa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodReceitaDespesa() { + return codReceitaDespesa; + } + + /** + * Sets the value of the codReceitaDespesa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodReceitaDespesa(String value) { + this.codReceitaDespesa = value; + } + + /** + * Gets the value of the credDebitoReceitaDespesa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCredDebitoReceitaDespesa() { + return credDebitoReceitaDespesa; + } + + /** + * Sets the value of the credDebitoReceitaDespesa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCredDebitoReceitaDespesa(String value) { + this.credDebitoReceitaDespesa = value; + } + + /** + * Gets the value of the descReceitaDespesa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescReceitaDespesa() { + return descReceitaDespesa; + } + + /** + * Sets the value of the descReceitaDespesa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescReceitaDespesa(String value) { + this.descReceitaDespesa = value; + } + + /** + * Gets the value of the formaPagReceitaDespesa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormaPagReceitaDespesa() { + return formaPagReceitaDespesa; + } + + /** + * Sets the value of the formaPagReceitaDespesa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormaPagReceitaDespesa(String value) { + this.formaPagReceitaDespesa = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoReceitaDespesaWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoReceitaDespesaWS.java new file mode 100644 index 000000000..ec63a71af --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoReceitaDespesaWS.java @@ -0,0 +1,303 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoReceitaDespesaWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoReceitaDespesaWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="agencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codFilial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataLancamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataMovimento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="idReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="turno" 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="valorLancamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoReceitaDespesaWS", propOrder = { + "agencia", + "codEmpresa", + "codFilial", + "codReceitaDespesa", + "dataLancamento", + "dataMovimento", + "idReceitaDespesa", + "turno", + "usuario", + "valorLancamento" +}) +public class ExportaIntegracaoReceitaDespesaWS { + + protected String agencia; + protected String codEmpresa; + protected String codFilial; + protected String codReceitaDespesa; + protected String dataLancamento; + protected String dataMovimento; + protected String idReceitaDespesa; + protected String turno; + protected String usuario; + protected String valorLancamento; + + /** + * Gets the value of the agencia property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgencia() { + return agencia; + } + + /** + * Sets the value of the agencia property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgencia(String value) { + this.agencia = value; + } + + /** + * Gets the value of the codEmpresa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodEmpresa() { + return codEmpresa; + } + + /** + * Sets the value of the codEmpresa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodEmpresa(String value) { + this.codEmpresa = value; + } + + /** + * Gets the value of the codFilial property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodFilial() { + return codFilial; + } + + /** + * Sets the value of the codFilial property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodFilial(String value) { + this.codFilial = value; + } + + /** + * Gets the value of the codReceitaDespesa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodReceitaDespesa() { + return codReceitaDespesa; + } + + /** + * Sets the value of the codReceitaDespesa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodReceitaDespesa(String value) { + this.codReceitaDespesa = value; + } + + /** + * Gets the value of the dataLancamento property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataLancamento() { + return dataLancamento; + } + + /** + * Sets the value of the dataLancamento property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataLancamento(String value) { + this.dataLancamento = value; + } + + /** + * Gets the value of the dataMovimento property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataMovimento() { + return dataMovimento; + } + + /** + * Sets the value of the dataMovimento property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataMovimento(String value) { + this.dataMovimento = value; + } + + /** + * Gets the value of the idReceitaDespesa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdReceitaDespesa() { + return idReceitaDespesa; + } + + /** + * Sets the value of the idReceitaDespesa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdReceitaDespesa(String value) { + this.idReceitaDespesa = value; + } + + /** + * Gets the value of the turno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTurno() { + return turno; + } + + /** + * Sets the value of the turno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTurno(String value) { + this.turno = value; + } + + /** + * Gets the value of the usuario property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUsuario() { + return usuario; + } + + /** + * Sets the value of the usuario property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUsuario(String value) { + this.usuario = value; + } + + /** + * Gets the value of the valorLancamento property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValorLancamento() { + return valorLancamento; + } + + /** + * Sets the value of the valorLancamento property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValorLancamento(String value) { + this.valorLancamento = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoWS.java b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoWS.java new file mode 100644 index 000000000..54cc39ef9 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ExportaIntegracaoWS.java @@ -0,0 +1,2747 @@ + +package com.rjconsultores.hstcajservice.ws; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for exportaIntegracaoWS complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="exportaIntegracaoWS">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="AIDF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="acrescimoICMSECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaDesembarque" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaEmbarque" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaEmissaoCupomFiscalECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaMovimentacaoPassagen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaPrestacaoConta" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="agenciaTMRRS" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="autorizacao0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="autorizacao1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="autorizacao2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="boletoId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="COOFinalECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="COOInicialECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="CROECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="CRZECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="cancelamentoICMSECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codigoAnulacao" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codigoClienteRequisicao" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="codigoVenda" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataReducaoECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataServico" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataVenda" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dataViagem" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="desconto" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="descontoICMSECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="destino" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="devolucaoCupomFiscalECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="espaco1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="espaco2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="espaco3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="espaco4" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="espaco5" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="estabelecimento0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="estabelecimento1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="estabelecimento2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="estado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="exclusivoBilheteriaGlobus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="formaPagto0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="formaPagto1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="formaPagto2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="horaServico" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="horaVenda" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="horaViagem" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="isentoICMSECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="linha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="modalidadeIPosterior" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="modeloBilheteFiscalECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="motorista1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="motorista2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="NSU0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="NSU1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="NSU2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="NSUHostTID0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="NSUHostTID1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="NSUHostTID2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="naoIncidenciaICMSECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="nomePassageiroRequisicao" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numeroCaixaFiscalECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numeroCupomFiscalECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numeroDVPRS" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numeroLojaFiscalECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numeroPreImpresso" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numeroRequisicao" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numeroSerieImpressoraECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numeroSistemaEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="numeroVT" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="origem" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="outros" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="pedagio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="poltrona" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="porcentagemFormaPagto0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="porcentagemFormaPagto1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="porcentagemFormaPagto2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prefixoLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="qtdeParcela0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="qtdeParcela1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="qtdeParcela2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="qtdePassageiros" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="quantidadeCanceladoECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registros" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="SVIRS" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="seguro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="seriePassagens" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="servico" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="statusSVIRS" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="subseriePassagens" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="substituicaoTributariaICMSECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="TMRRS" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="tarifa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="taxaEmbarque" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="tipoPassagem" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="valorGrandeTotalECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="valorMultaCancelamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="valorVendaBrutaECF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="veiculo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="vlrFormaPagto0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="vlrFormaPagto1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="vlrFormaPagto2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "exportaIntegracaoWS", propOrder = { + "aidf", + "acrescimoICMSECF", + "agenciaDesembarque", + "agenciaEmbarque", + "agenciaEmissaoCupomFiscalECF", + "agenciaMovimentacaoPassagen", + "agenciaPrestacaoConta", + "agenciaTMRRS", + "autorizacao0", + "autorizacao1", + "autorizacao2", + "bilheteiro", + "boletoId", + "cooFinalECF", + "cooInicialECF", + "croecf", + "crzecf", + "cancelamentoICMSECF", + "codigoAnulacao", + "codigoClienteRequisicao", + "codigoVenda", + "dataReducaoECF", + "dataServico", + "dataVenda", + "dataViagem", + "desconto", + "descontoICMSECF", + "destino", + "devolucaoCupomFiscalECF", + "espaco1", + "espaco2", + "espaco3", + "espaco4", + "espaco5", + "estabelecimento0", + "estabelecimento1", + "estabelecimento2", + "estado", + "exclusivoBilheteriaGlobus", + "formaPagto0", + "formaPagto1", + "formaPagto2", + "horaServico", + "horaVenda", + "horaViagem", + "isentoICMSECF", + "linha", + "modalidadeIPosterior", + "modeloBilheteFiscalECF", + "motorista1", + "motorista2", + "nsu0", + "nsu1", + "nsu2", + "nsuHostTID0", + "nsuHostTID1", + "nsuHostTID2", + "naoIncidenciaICMSECF", + "nomePassageiroRequisicao", + "numeroCaixaFiscalECF", + "numeroCupomFiscalECF", + "numeroDVPRS", + "numeroLojaFiscalECF", + "numeroPreImpresso", + "numeroRequisicao", + "numeroSerieImpressoraECF", + "numeroSistemaEstado", + "numeroVT", + "origem", + "outros", + "pedagio", + "poltrona", + "porcentagemFormaPagto0", + "porcentagemFormaPagto1", + "porcentagemFormaPagto2", + "prefixoLinha", + "qtdeParcela0", + "qtdeParcela1", + "qtdeParcela2", + "qtdePassageiros", + "quantidadeCanceladoECF", + "registros", + "svirs", + "seguro", + "seriePassagens", + "servico", + "statusSVIRS", + "subseriePassagens", + "substituicaoTributariaICMSECF", + "tmrrs", + "tarifa", + "taxaEmbarque", + "tipoPassagem", + "valorGrandeTotalECF", + "valorMultaCancelamento", + "valorVendaBrutaECF", + "veiculo", + "vlrFormaPagto0", + "vlrFormaPagto1", + "vlrFormaPagto2" +}) +public class ExportaIntegracaoWS { + + @XmlElement(name = "AIDF") + protected String aidf; + protected String acrescimoICMSECF; + protected String agenciaDesembarque; + protected String agenciaEmbarque; + protected String agenciaEmissaoCupomFiscalECF; + protected String agenciaMovimentacaoPassagen; + protected String agenciaPrestacaoConta; + protected String agenciaTMRRS; + protected String autorizacao0; + protected String autorizacao1; + protected String autorizacao2; + protected String bilheteiro; + protected Long boletoId; + @XmlElement(name = "COOFinalECF") + protected String cooFinalECF; + @XmlElement(name = "COOInicialECF") + protected String cooInicialECF; + @XmlElement(name = "CROECF") + protected String croecf; + @XmlElement(name = "CRZECF") + protected String crzecf; + protected String cancelamentoICMSECF; + protected String codigoAnulacao; + protected String codigoClienteRequisicao; + protected String codigoVenda; + protected String dataReducaoECF; + protected String dataServico; + protected String dataVenda; + protected String dataViagem; + protected String desconto; + protected String descontoICMSECF; + protected String destino; + protected String devolucaoCupomFiscalECF; + protected String espaco1; + protected String espaco2; + protected String espaco3; + protected String espaco4; + protected String espaco5; + protected String estabelecimento0; + protected String estabelecimento1; + protected String estabelecimento2; + protected String estado; + protected String exclusivoBilheteriaGlobus; + protected String formaPagto0; + protected String formaPagto1; + protected String formaPagto2; + protected String horaServico; + protected String horaVenda; + protected String horaViagem; + protected String isentoICMSECF; + protected String linha; + protected String modalidadeIPosterior; + protected String modeloBilheteFiscalECF; + protected String motorista1; + protected String motorista2; + @XmlElement(name = "NSU0") + protected String nsu0; + @XmlElement(name = "NSU1") + protected String nsu1; + @XmlElement(name = "NSU2") + protected String nsu2; + @XmlElement(name = "NSUHostTID0") + protected String nsuHostTID0; + @XmlElement(name = "NSUHostTID1") + protected String nsuHostTID1; + @XmlElement(name = "NSUHostTID2") + protected String nsuHostTID2; + protected String naoIncidenciaICMSECF; + protected String nomePassageiroRequisicao; + protected String numeroCaixaFiscalECF; + protected String numeroCupomFiscalECF; + protected String numeroDVPRS; + protected String numeroLojaFiscalECF; + protected String numeroPreImpresso; + protected String numeroRequisicao; + protected String numeroSerieImpressoraECF; + protected String numeroSistemaEstado; + protected String numeroVT; + protected String origem; + protected String outros; + protected String pedagio; + protected String poltrona; + protected String porcentagemFormaPagto0; + protected String porcentagemFormaPagto1; + protected String porcentagemFormaPagto2; + protected String prefixoLinha; + protected String qtdeParcela0; + protected String qtdeParcela1; + protected String qtdeParcela2; + protected String qtdePassageiros; + protected String quantidadeCanceladoECF; + protected Integer registros; + @XmlElement(name = "SVIRS") + protected String svirs; + protected String seguro; + protected String seriePassagens; + protected String servico; + protected String statusSVIRS; + protected String subseriePassagens; + protected String substituicaoTributariaICMSECF; + @XmlElement(name = "TMRRS") + protected String tmrrs; + protected String tarifa; + protected String taxaEmbarque; + protected String tipoPassagem; + protected String valorGrandeTotalECF; + protected String valorMultaCancelamento; + protected String valorVendaBrutaECF; + protected String veiculo; + protected String vlrFormaPagto0; + protected String vlrFormaPagto1; + protected String vlrFormaPagto2; + + /** + * Gets the value of the aidf property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAIDF() { + return aidf; + } + + /** + * Sets the value of the aidf property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAIDF(String value) { + this.aidf = value; + } + + /** + * Gets the value of the acrescimoICMSECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAcrescimoICMSECF() { + return acrescimoICMSECF; + } + + /** + * Sets the value of the acrescimoICMSECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAcrescimoICMSECF(String value) { + this.acrescimoICMSECF = value; + } + + /** + * Gets the value of the agenciaDesembarque property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaDesembarque() { + return agenciaDesembarque; + } + + /** + * Sets the value of the agenciaDesembarque property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaDesembarque(String value) { + this.agenciaDesembarque = value; + } + + /** + * Gets the value of the agenciaEmbarque property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaEmbarque() { + return agenciaEmbarque; + } + + /** + * Sets the value of the agenciaEmbarque property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaEmbarque(String value) { + this.agenciaEmbarque = value; + } + + /** + * Gets the value of the agenciaEmissaoCupomFiscalECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaEmissaoCupomFiscalECF() { + return agenciaEmissaoCupomFiscalECF; + } + + /** + * Sets the value of the agenciaEmissaoCupomFiscalECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaEmissaoCupomFiscalECF(String value) { + this.agenciaEmissaoCupomFiscalECF = value; + } + + /** + * Gets the value of the agenciaMovimentacaoPassagen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaMovimentacaoPassagen() { + return agenciaMovimentacaoPassagen; + } + + /** + * Sets the value of the agenciaMovimentacaoPassagen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaMovimentacaoPassagen(String value) { + this.agenciaMovimentacaoPassagen = value; + } + + /** + * Gets the value of the agenciaPrestacaoConta property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaPrestacaoConta() { + return agenciaPrestacaoConta; + } + + /** + * Sets the value of the agenciaPrestacaoConta property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaPrestacaoConta(String value) { + this.agenciaPrestacaoConta = value; + } + + /** + * Gets the value of the agenciaTMRRS property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAgenciaTMRRS() { + return agenciaTMRRS; + } + + /** + * Sets the value of the agenciaTMRRS property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAgenciaTMRRS(String value) { + this.agenciaTMRRS = value; + } + + /** + * Gets the value of the autorizacao0 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAutorizacao0() { + return autorizacao0; + } + + /** + * Sets the value of the autorizacao0 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAutorizacao0(String value) { + this.autorizacao0 = value; + } + + /** + * Gets the value of the autorizacao1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAutorizacao1() { + return autorizacao1; + } + + /** + * Sets the value of the autorizacao1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAutorizacao1(String value) { + this.autorizacao1 = value; + } + + /** + * Gets the value of the autorizacao2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAutorizacao2() { + return autorizacao2; + } + + /** + * Sets the value of the autorizacao2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAutorizacao2(String value) { + this.autorizacao2 = value; + } + + /** + * Gets the value of the bilheteiro property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBilheteiro() { + return bilheteiro; + } + + /** + * Sets the value of the bilheteiro property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBilheteiro(String value) { + this.bilheteiro = value; + } + + /** + * Gets the value of the boletoId property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getBoletoId() { + return boletoId; + } + + /** + * Sets the value of the boletoId property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setBoletoId(Long value) { + this.boletoId = value; + } + + /** + * Gets the value of the cooFinalECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCOOFinalECF() { + return cooFinalECF; + } + + /** + * Sets the value of the cooFinalECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCOOFinalECF(String value) { + this.cooFinalECF = value; + } + + /** + * Gets the value of the cooInicialECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCOOInicialECF() { + return cooInicialECF; + } + + /** + * Sets the value of the cooInicialECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCOOInicialECF(String value) { + this.cooInicialECF = value; + } + + /** + * Gets the value of the croecf property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCROECF() { + return croecf; + } + + /** + * Sets the value of the croecf property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCROECF(String value) { + this.croecf = value; + } + + /** + * Gets the value of the crzecf property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCRZECF() { + return crzecf; + } + + /** + * Sets the value of the crzecf property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCRZECF(String value) { + this.crzecf = value; + } + + /** + * Gets the value of the cancelamentoICMSECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCancelamentoICMSECF() { + return cancelamentoICMSECF; + } + + /** + * Sets the value of the cancelamentoICMSECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCancelamentoICMSECF(String value) { + this.cancelamentoICMSECF = value; + } + + /** + * Gets the value of the codigoAnulacao property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodigoAnulacao() { + return codigoAnulacao; + } + + /** + * Sets the value of the codigoAnulacao property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodigoAnulacao(String value) { + this.codigoAnulacao = value; + } + + /** + * Gets the value of the codigoClienteRequisicao property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodigoClienteRequisicao() { + return codigoClienteRequisicao; + } + + /** + * Sets the value of the codigoClienteRequisicao property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodigoClienteRequisicao(String value) { + this.codigoClienteRequisicao = value; + } + + /** + * Gets the value of the codigoVenda property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCodigoVenda() { + return codigoVenda; + } + + /** + * Sets the value of the codigoVenda property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCodigoVenda(String value) { + this.codigoVenda = value; + } + + /** + * Gets the value of the dataReducaoECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataReducaoECF() { + return dataReducaoECF; + } + + /** + * Sets the value of the dataReducaoECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataReducaoECF(String value) { + this.dataReducaoECF = value; + } + + /** + * Gets the value of the dataServico property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataServico() { + return dataServico; + } + + /** + * Sets the value of the dataServico property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataServico(String value) { + this.dataServico = value; + } + + /** + * Gets the value of the dataVenda property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataVenda() { + return dataVenda; + } + + /** + * Sets the value of the dataVenda property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataVenda(String value) { + this.dataVenda = value; + } + + /** + * Gets the value of the dataViagem property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDataViagem() { + return dataViagem; + } + + /** + * Sets the value of the dataViagem property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDataViagem(String value) { + this.dataViagem = value; + } + + /** + * Gets the value of the desconto property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDesconto() { + return desconto; + } + + /** + * Sets the value of the desconto property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDesconto(String value) { + this.desconto = value; + } + + /** + * Gets the value of the descontoICMSECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescontoICMSECF() { + return descontoICMSECF; + } + + /** + * Sets the value of the descontoICMSECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescontoICMSECF(String value) { + this.descontoICMSECF = value; + } + + /** + * Gets the value of the destino property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDestino() { + return destino; + } + + /** + * Sets the value of the destino property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDestino(String value) { + this.destino = value; + } + + /** + * Gets the value of the devolucaoCupomFiscalECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDevolucaoCupomFiscalECF() { + return devolucaoCupomFiscalECF; + } + + /** + * Sets the value of the devolucaoCupomFiscalECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDevolucaoCupomFiscalECF(String value) { + this.devolucaoCupomFiscalECF = value; + } + + /** + * Gets the value of the espaco1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEspaco1() { + return espaco1; + } + + /** + * Sets the value of the espaco1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEspaco1(String value) { + this.espaco1 = value; + } + + /** + * Gets the value of the espaco2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEspaco2() { + return espaco2; + } + + /** + * Sets the value of the espaco2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEspaco2(String value) { + this.espaco2 = value; + } + + /** + * Gets the value of the espaco3 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEspaco3() { + return espaco3; + } + + /** + * Sets the value of the espaco3 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEspaco3(String value) { + this.espaco3 = value; + } + + /** + * Gets the value of the espaco4 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEspaco4() { + return espaco4; + } + + /** + * Sets the value of the espaco4 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEspaco4(String value) { + this.espaco4 = value; + } + + /** + * Gets the value of the espaco5 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEspaco5() { + return espaco5; + } + + /** + * Sets the value of the espaco5 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEspaco5(String value) { + this.espaco5 = value; + } + + /** + * Gets the value of the estabelecimento0 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstabelecimento0() { + return estabelecimento0; + } + + /** + * Sets the value of the estabelecimento0 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstabelecimento0(String value) { + this.estabelecimento0 = value; + } + + /** + * Gets the value of the estabelecimento1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstabelecimento1() { + return estabelecimento1; + } + + /** + * Sets the value of the estabelecimento1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstabelecimento1(String value) { + this.estabelecimento1 = value; + } + + /** + * Gets the value of the estabelecimento2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstabelecimento2() { + return estabelecimento2; + } + + /** + * Sets the value of the estabelecimento2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstabelecimento2(String value) { + this.estabelecimento2 = value; + } + + /** + * Gets the value of the estado property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstado() { + return estado; + } + + /** + * Sets the value of the estado property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstado(String value) { + this.estado = value; + } + + /** + * Gets the value of the exclusivoBilheteriaGlobus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getExclusivoBilheteriaGlobus() { + return exclusivoBilheteriaGlobus; + } + + /** + * Sets the value of the exclusivoBilheteriaGlobus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setExclusivoBilheteriaGlobus(String value) { + this.exclusivoBilheteriaGlobus = value; + } + + /** + * Gets the value of the formaPagto0 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormaPagto0() { + return formaPagto0; + } + + /** + * Sets the value of the formaPagto0 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormaPagto0(String value) { + this.formaPagto0 = value; + } + + /** + * Gets the value of the formaPagto1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormaPagto1() { + return formaPagto1; + } + + /** + * Sets the value of the formaPagto1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormaPagto1(String value) { + this.formaPagto1 = value; + } + + /** + * Gets the value of the formaPagto2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormaPagto2() { + return formaPagto2; + } + + /** + * Sets the value of the formaPagto2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormaPagto2(String value) { + this.formaPagto2 = value; + } + + /** + * Gets the value of the horaServico property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHoraServico() { + return horaServico; + } + + /** + * Sets the value of the horaServico property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHoraServico(String value) { + this.horaServico = value; + } + + /** + * Gets the value of the horaVenda property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHoraVenda() { + return horaVenda; + } + + /** + * Sets the value of the horaVenda property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHoraVenda(String value) { + this.horaVenda = value; + } + + /** + * Gets the value of the horaViagem property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHoraViagem() { + return horaViagem; + } + + /** + * Sets the value of the horaViagem property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHoraViagem(String value) { + this.horaViagem = value; + } + + /** + * Gets the value of the isentoICMSECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIsentoICMSECF() { + return isentoICMSECF; + } + + /** + * Sets the value of the isentoICMSECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIsentoICMSECF(String value) { + this.isentoICMSECF = value; + } + + /** + * Gets the value of the linha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLinha() { + return linha; + } + + /** + * Sets the value of the linha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLinha(String value) { + this.linha = value; + } + + /** + * Gets the value of the modalidadeIPosterior property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModalidadeIPosterior() { + return modalidadeIPosterior; + } + + /** + * Sets the value of the modalidadeIPosterior property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModalidadeIPosterior(String value) { + this.modalidadeIPosterior = value; + } + + /** + * Gets the value of the modeloBilheteFiscalECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModeloBilheteFiscalECF() { + return modeloBilheteFiscalECF; + } + + /** + * Sets the value of the modeloBilheteFiscalECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModeloBilheteFiscalECF(String value) { + this.modeloBilheteFiscalECF = value; + } + + /** + * Gets the value of the motorista1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMotorista1() { + return motorista1; + } + + /** + * Sets the value of the motorista1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMotorista1(String value) { + this.motorista1 = value; + } + + /** + * Gets the value of the motorista2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMotorista2() { + return motorista2; + } + + /** + * Sets the value of the motorista2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMotorista2(String value) { + this.motorista2 = value; + } + + /** + * Gets the value of the nsu0 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNSU0() { + return nsu0; + } + + /** + * Sets the value of the nsu0 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNSU0(String value) { + this.nsu0 = value; + } + + /** + * Gets the value of the nsu1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNSU1() { + return nsu1; + } + + /** + * Sets the value of the nsu1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNSU1(String value) { + this.nsu1 = value; + } + + /** + * Gets the value of the nsu2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNSU2() { + return nsu2; + } + + /** + * Sets the value of the nsu2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNSU2(String value) { + this.nsu2 = value; + } + + /** + * Gets the value of the nsuHostTID0 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNSUHostTID0() { + return nsuHostTID0; + } + + /** + * Sets the value of the nsuHostTID0 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNSUHostTID0(String value) { + this.nsuHostTID0 = value; + } + + /** + * Gets the value of the nsuHostTID1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNSUHostTID1() { + return nsuHostTID1; + } + + /** + * Sets the value of the nsuHostTID1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNSUHostTID1(String value) { + this.nsuHostTID1 = value; + } + + /** + * Gets the value of the nsuHostTID2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNSUHostTID2() { + return nsuHostTID2; + } + + /** + * Sets the value of the nsuHostTID2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNSUHostTID2(String value) { + this.nsuHostTID2 = value; + } + + /** + * Gets the value of the naoIncidenciaICMSECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNaoIncidenciaICMSECF() { + return naoIncidenciaICMSECF; + } + + /** + * Sets the value of the naoIncidenciaICMSECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNaoIncidenciaICMSECF(String value) { + this.naoIncidenciaICMSECF = value; + } + + /** + * Gets the value of the nomePassageiroRequisicao property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNomePassageiroRequisicao() { + return nomePassageiroRequisicao; + } + + /** + * Sets the value of the nomePassageiroRequisicao property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNomePassageiroRequisicao(String value) { + this.nomePassageiroRequisicao = value; + } + + /** + * Gets the value of the numeroCaixaFiscalECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumeroCaixaFiscalECF() { + return numeroCaixaFiscalECF; + } + + /** + * Sets the value of the numeroCaixaFiscalECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumeroCaixaFiscalECF(String value) { + this.numeroCaixaFiscalECF = value; + } + + /** + * Gets the value of the numeroCupomFiscalECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumeroCupomFiscalECF() { + return numeroCupomFiscalECF; + } + + /** + * Sets the value of the numeroCupomFiscalECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumeroCupomFiscalECF(String value) { + this.numeroCupomFiscalECF = value; + } + + /** + * Gets the value of the numeroDVPRS property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumeroDVPRS() { + return numeroDVPRS; + } + + /** + * Sets the value of the numeroDVPRS property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumeroDVPRS(String value) { + this.numeroDVPRS = value; + } + + /** + * Gets the value of the numeroLojaFiscalECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumeroLojaFiscalECF() { + return numeroLojaFiscalECF; + } + + /** + * Sets the value of the numeroLojaFiscalECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumeroLojaFiscalECF(String value) { + this.numeroLojaFiscalECF = value; + } + + /** + * Gets the value of the numeroPreImpresso property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumeroPreImpresso() { + return numeroPreImpresso; + } + + /** + * Sets the value of the numeroPreImpresso property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumeroPreImpresso(String value) { + this.numeroPreImpresso = value; + } + + /** + * Gets the value of the numeroRequisicao property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumeroRequisicao() { + return numeroRequisicao; + } + + /** + * Sets the value of the numeroRequisicao property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumeroRequisicao(String value) { + this.numeroRequisicao = value; + } + + /** + * Gets the value of the numeroSerieImpressoraECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumeroSerieImpressoraECF() { + return numeroSerieImpressoraECF; + } + + /** + * Sets the value of the numeroSerieImpressoraECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumeroSerieImpressoraECF(String value) { + this.numeroSerieImpressoraECF = value; + } + + /** + * Gets the value of the numeroSistemaEstado property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumeroSistemaEstado() { + return numeroSistemaEstado; + } + + /** + * Sets the value of the numeroSistemaEstado property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumeroSistemaEstado(String value) { + this.numeroSistemaEstado = value; + } + + /** + * Gets the value of the numeroVT property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumeroVT() { + return numeroVT; + } + + /** + * Sets the value of the numeroVT property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumeroVT(String value) { + this.numeroVT = value; + } + + /** + * Gets the value of the origem property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrigem() { + return origem; + } + + /** + * Sets the value of the origem property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrigem(String value) { + this.origem = value; + } + + /** + * Gets the value of the outros property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOutros() { + return outros; + } + + /** + * Sets the value of the outros property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOutros(String value) { + this.outros = value; + } + + /** + * Gets the value of the pedagio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPedagio() { + return pedagio; + } + + /** + * Sets the value of the pedagio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPedagio(String value) { + this.pedagio = value; + } + + /** + * Gets the value of the poltrona property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPoltrona() { + return poltrona; + } + + /** + * Sets the value of the poltrona property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPoltrona(String value) { + this.poltrona = value; + } + + /** + * Gets the value of the porcentagemFormaPagto0 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPorcentagemFormaPagto0() { + return porcentagemFormaPagto0; + } + + /** + * Sets the value of the porcentagemFormaPagto0 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPorcentagemFormaPagto0(String value) { + this.porcentagemFormaPagto0 = value; + } + + /** + * Gets the value of the porcentagemFormaPagto1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPorcentagemFormaPagto1() { + return porcentagemFormaPagto1; + } + + /** + * Sets the value of the porcentagemFormaPagto1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPorcentagemFormaPagto1(String value) { + this.porcentagemFormaPagto1 = value; + } + + /** + * Gets the value of the porcentagemFormaPagto2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPorcentagemFormaPagto2() { + return porcentagemFormaPagto2; + } + + /** + * Sets the value of the porcentagemFormaPagto2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPorcentagemFormaPagto2(String value) { + this.porcentagemFormaPagto2 = value; + } + + /** + * Gets the value of the prefixoLinha property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefixoLinha() { + return prefixoLinha; + } + + /** + * Sets the value of the prefixoLinha property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefixoLinha(String value) { + this.prefixoLinha = value; + } + + /** + * Gets the value of the qtdeParcela0 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getQtdeParcela0() { + return qtdeParcela0; + } + + /** + * Sets the value of the qtdeParcela0 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setQtdeParcela0(String value) { + this.qtdeParcela0 = value; + } + + /** + * Gets the value of the qtdeParcela1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getQtdeParcela1() { + return qtdeParcela1; + } + + /** + * Sets the value of the qtdeParcela1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setQtdeParcela1(String value) { + this.qtdeParcela1 = value; + } + + /** + * Gets the value of the qtdeParcela2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getQtdeParcela2() { + return qtdeParcela2; + } + + /** + * Sets the value of the qtdeParcela2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setQtdeParcela2(String value) { + this.qtdeParcela2 = value; + } + + /** + * Gets the value of the qtdePassageiros property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getQtdePassageiros() { + return qtdePassageiros; + } + + /** + * Sets the value of the qtdePassageiros property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setQtdePassageiros(String value) { + this.qtdePassageiros = value; + } + + /** + * Gets the value of the quantidadeCanceladoECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getQuantidadeCanceladoECF() { + return quantidadeCanceladoECF; + } + + /** + * Sets the value of the quantidadeCanceladoECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setQuantidadeCanceladoECF(String value) { + this.quantidadeCanceladoECF = value; + } + + /** + * Gets the value of the registros property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getRegistros() { + return registros; + } + + /** + * Sets the value of the registros property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setRegistros(Integer value) { + this.registros = value; + } + + /** + * Gets the value of the svirs property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSVIRS() { + return svirs; + } + + /** + * Sets the value of the svirs property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSVIRS(String value) { + this.svirs = value; + } + + /** + * Gets the value of the seguro property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSeguro() { + return seguro; + } + + /** + * Sets the value of the seguro property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSeguro(String value) { + this.seguro = value; + } + + /** + * Gets the value of the seriePassagens property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSeriePassagens() { + return seriePassagens; + } + + /** + * Sets the value of the seriePassagens property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSeriePassagens(String value) { + this.seriePassagens = value; + } + + /** + * Gets the value of the servico property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getServico() { + return servico; + } + + /** + * Sets the value of the servico property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setServico(String value) { + this.servico = value; + } + + /** + * Gets the value of the statusSVIRS property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatusSVIRS() { + return statusSVIRS; + } + + /** + * Sets the value of the statusSVIRS property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatusSVIRS(String value) { + this.statusSVIRS = value; + } + + /** + * Gets the value of the subseriePassagens property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubseriePassagens() { + return subseriePassagens; + } + + /** + * Sets the value of the subseriePassagens property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubseriePassagens(String value) { + this.subseriePassagens = value; + } + + /** + * Gets the value of the substituicaoTributariaICMSECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubstituicaoTributariaICMSECF() { + return substituicaoTributariaICMSECF; + } + + /** + * Sets the value of the substituicaoTributariaICMSECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubstituicaoTributariaICMSECF(String value) { + this.substituicaoTributariaICMSECF = value; + } + + /** + * Gets the value of the tmrrs property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTMRRS() { + return tmrrs; + } + + /** + * Sets the value of the tmrrs property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTMRRS(String value) { + this.tmrrs = value; + } + + /** + * Gets the value of the tarifa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTarifa() { + return tarifa; + } + + /** + * Sets the value of the tarifa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTarifa(String value) { + this.tarifa = value; + } + + /** + * Gets the value of the taxaEmbarque property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTaxaEmbarque() { + return taxaEmbarque; + } + + /** + * Sets the value of the taxaEmbarque property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTaxaEmbarque(String value) { + this.taxaEmbarque = value; + } + + /** + * Gets the value of the tipoPassagem property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTipoPassagem() { + return tipoPassagem; + } + + /** + * Sets the value of the tipoPassagem property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTipoPassagem(String value) { + this.tipoPassagem = value; + } + + /** + * Gets the value of the valorGrandeTotalECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValorGrandeTotalECF() { + return valorGrandeTotalECF; + } + + /** + * Sets the value of the valorGrandeTotalECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValorGrandeTotalECF(String value) { + this.valorGrandeTotalECF = value; + } + + /** + * Gets the value of the valorMultaCancelamento property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValorMultaCancelamento() { + return valorMultaCancelamento; + } + + /** + * Sets the value of the valorMultaCancelamento property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValorMultaCancelamento(String value) { + this.valorMultaCancelamento = value; + } + + /** + * Gets the value of the valorVendaBrutaECF property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValorVendaBrutaECF() { + return valorVendaBrutaECF; + } + + /** + * Sets the value of the valorVendaBrutaECF property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValorVendaBrutaECF(String value) { + this.valorVendaBrutaECF = value; + } + + /** + * Gets the value of the veiculo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVeiculo() { + return veiculo; + } + + /** + * Sets the value of the veiculo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVeiculo(String value) { + this.veiculo = value; + } + + /** + * Gets the value of the vlrFormaPagto0 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVlrFormaPagto0() { + return vlrFormaPagto0; + } + + /** + * Sets the value of the vlrFormaPagto0 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVlrFormaPagto0(String value) { + this.vlrFormaPagto0 = value; + } + + /** + * Gets the value of the vlrFormaPagto1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVlrFormaPagto1() { + return vlrFormaPagto1; + } + + /** + * Sets the value of the vlrFormaPagto1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVlrFormaPagto1(String value) { + this.vlrFormaPagto1 = value; + } + + /** + * Gets the value of the vlrFormaPagto2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVlrFormaPagto2() { + return vlrFormaPagto2; + } + + /** + * Sets the value of the vlrFormaPagto2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVlrFormaPagto2(String value) { + this.vlrFormaPagto2 = value; + } + +} diff --git a/src/com/rjconsultores/hstcajservice/ws/ObjectFactory.java b/src/com/rjconsultores/hstcajservice/ws/ObjectFactory.java new file mode 100644 index 000000000..29388fc23 --- /dev/null +++ b/src/com/rjconsultores/hstcajservice/ws/ObjectFactory.java @@ -0,0 +1,555 @@ + +package com.rjconsultores.hstcajservice.ws; + +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.rjconsultores.hstcajservice.ws 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 _CadReceitaDespesa_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadReceitaDespesa"); + private final static QName _BuscarReceitaDespesaResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "buscarReceitaDespesaResponse"); + private final static QName _CadEstadoResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadEstadoResponse"); + private final static QName _CadLocalidadeResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadLocalidadeResponse"); + private final static QName _CadCliente_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadCliente"); + private final static QName _CadEstado_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadEstado"); + private final static QName _BuscarBilhetes_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "buscarBilhetes"); + private final static QName _CadLinha_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadLinha"); + private final static QName _CadBeneficioResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadBeneficioResponse"); + private final static QName _CadAgenciaResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadAgenciaResponse"); + private final static QName _CadLinhaResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadLinhaResponse"); + private final static QName _BuscarBilhetesInconsistente_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "buscarBilhetesInconsistente"); + private final static QName _CadReceitaDespesaResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadReceitaDespesaResponse"); + private final static QName _CadBilheteiroResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadBilheteiroResponse"); + private final static QName _CadFormaPagamento_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadFormaPagamento"); + private final static QName _CadFormaPagamentoResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadFormaPagamentoResponse"); + private final static QName _CadClienteResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadClienteResponse"); + private final static QName _BuscarBilhetesInconsistenteResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "buscarBilhetesInconsistenteResponse"); + private final static QName _BuscarBilhetesResponse_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "buscarBilhetesResponse"); + private final static QName _BuscarReceitaDespesa_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "buscarReceitaDespesa"); + private final static QName _CadBilheteiro_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadBilheteiro"); + private final static QName _CadBeneficio_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadBeneficio"); + private final static QName _CadLocalidade_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadLocalidade"); + private final static QName _CadAgencia_QNAME = new QName("http://ws.hstcajservice.rjconsultores.com/", "cadAgencia"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.rjconsultores.hstcajservice.ws + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link CadBilheteiro } + * + */ + public CadBilheteiro createCadBilheteiro() { + return new CadBilheteiro(); + } + + /** + * Create an instance of {@link ExportaIntegracaoCadClienteWS } + * + */ + public ExportaIntegracaoCadClienteWS createExportaIntegracaoCadClienteWS() { + return new ExportaIntegracaoCadClienteWS(); + } + + /** + * Create an instance of {@link CadBilheteiroResponse } + * + */ + public CadBilheteiroResponse createCadBilheteiroResponse() { + return new CadBilheteiroResponse(); + } + + /** + * Create an instance of {@link CadCliente } + * + */ + public CadCliente createCadCliente() { + return new CadCliente(); + } + + /** + * Create an instance of {@link ExportaIntegracaoCadFormaPagamentoWS } + * + */ + public ExportaIntegracaoCadFormaPagamentoWS createExportaIntegracaoCadFormaPagamentoWS() { + return new ExportaIntegracaoCadFormaPagamentoWS(); + } + + /** + * Create an instance of {@link ExportaIntegracaoCadBilheteiroWS } + * + */ + public ExportaIntegracaoCadBilheteiroWS createExportaIntegracaoCadBilheteiroWS() { + return new ExportaIntegracaoCadBilheteiroWS(); + } + + /** + * Create an instance of {@link CadLocalidade } + * + */ + public CadLocalidade createCadLocalidade() { + return new CadLocalidade(); + } + + /** + * Create an instance of {@link ExportaIntegracaoWS } + * + */ + public ExportaIntegracaoWS createExportaIntegracaoWS() { + return new ExportaIntegracaoWS(); + } + + /** + * Create an instance of {@link BuscarBilhetesInconsistente } + * + */ + public BuscarBilhetesInconsistente createBuscarBilhetesInconsistente() { + return new BuscarBilhetesInconsistente(); + } + + /** + * Create an instance of {@link CadReceitaDespesaResponse } + * + */ + public CadReceitaDespesaResponse createCadReceitaDespesaResponse() { + return new CadReceitaDespesaResponse(); + } + + /** + * Create an instance of {@link CadEstadoResponse } + * + */ + public CadEstadoResponse createCadEstadoResponse() { + return new CadEstadoResponse(); + } + + /** + * Create an instance of {@link ExportaIntegracaoCadLocalidadeWS } + * + */ + public ExportaIntegracaoCadLocalidadeWS createExportaIntegracaoCadLocalidadeWS() { + return new ExportaIntegracaoCadLocalidadeWS(); + } + + /** + * Create an instance of {@link ExportaIntegracaoCadAgenciaWS } + * + */ + public ExportaIntegracaoCadAgenciaWS createExportaIntegracaoCadAgenciaWS() { + return new ExportaIntegracaoCadAgenciaWS(); + } + + /** + * Create an instance of {@link CadLinha } + * + */ + public CadLinha createCadLinha() { + return new CadLinha(); + } + + /** + * Create an instance of {@link ExportaIntegracaoCadLinhaWS } + * + */ + public ExportaIntegracaoCadLinhaWS createExportaIntegracaoCadLinhaWS() { + return new ExportaIntegracaoCadLinhaWS(); + } + + /** + * Create an instance of {@link CadAgencia } + * + */ + public CadAgencia createCadAgencia() { + return new CadAgencia(); + } + + /** + * Create an instance of {@link CadReceitaDespesa } + * + */ + public CadReceitaDespesa createCadReceitaDespesa() { + return new CadReceitaDespesa(); + } + + /** + * Create an instance of {@link BuscarBilhetes } + * + */ + public BuscarBilhetes createBuscarBilhetes() { + return new BuscarBilhetes(); + } + + /** + * Create an instance of {@link BuscarBilhetesResponse } + * + */ + public BuscarBilhetesResponse createBuscarBilhetesResponse() { + return new BuscarBilhetesResponse(); + } + + /** + * Create an instance of {@link CadFormaPagamentoResponse } + * + */ + public CadFormaPagamentoResponse createCadFormaPagamentoResponse() { + return new CadFormaPagamentoResponse(); + } + + /** + * Create an instance of {@link CadFormaPagamento } + * + */ + public CadFormaPagamento createCadFormaPagamento() { + return new CadFormaPagamento(); + } + + /** + * Create an instance of {@link CadBeneficioResponse } + * + */ + public CadBeneficioResponse createCadBeneficioResponse() { + return new CadBeneficioResponse(); + } + + /** + * Create an instance of {@link CadEstado } + * + */ + public CadEstado createCadEstado() { + return new CadEstado(); + } + + /** + * Create an instance of {@link CadBeneficio } + * + */ + public CadBeneficio createCadBeneficio() { + return new CadBeneficio(); + } + + /** + * Create an instance of {@link BuscarReceitaDespesa } + * + */ + public BuscarReceitaDespesa createBuscarReceitaDespesa() { + return new BuscarReceitaDespesa(); + } + + /** + * Create an instance of {@link ExportaIntegracaoReceitaDespesaWS } + * + */ + public ExportaIntegracaoReceitaDespesaWS createExportaIntegracaoReceitaDespesaWS() { + return new ExportaIntegracaoReceitaDespesaWS(); + } + + /** + * Create an instance of {@link ExportaIntegracaoCadBeneficioWS } + * + */ + public ExportaIntegracaoCadBeneficioWS createExportaIntegracaoCadBeneficioWS() { + return new ExportaIntegracaoCadBeneficioWS(); + } + + /** + * Create an instance of {@link ExportaIntegracaoCadReceitaDespesaWS } + * + */ + public ExportaIntegracaoCadReceitaDespesaWS createExportaIntegracaoCadReceitaDespesaWS() { + return new ExportaIntegracaoCadReceitaDespesaWS(); + } + + /** + * Create an instance of {@link CadLocalidadeResponse } + * + */ + public CadLocalidadeResponse createCadLocalidadeResponse() { + return new CadLocalidadeResponse(); + } + + /** + * Create an instance of {@link BuscarReceitaDespesaResponse } + * + */ + public BuscarReceitaDespesaResponse createBuscarReceitaDespesaResponse() { + return new BuscarReceitaDespesaResponse(); + } + + /** + * Create an instance of {@link ExportaIntegracaoCadEstadoWS } + * + */ + public ExportaIntegracaoCadEstadoWS createExportaIntegracaoCadEstadoWS() { + return new ExportaIntegracaoCadEstadoWS(); + } + + /** + * Create an instance of {@link CadAgenciaResponse } + * + */ + public CadAgenciaResponse createCadAgenciaResponse() { + return new CadAgenciaResponse(); + } + + /** + * Create an instance of {@link BuscarBilhetesInconsistenteResponse } + * + */ + public BuscarBilhetesInconsistenteResponse createBuscarBilhetesInconsistenteResponse() { + return new BuscarBilhetesInconsistenteResponse(); + } + + /** + * Create an instance of {@link CadClienteResponse } + * + */ + public CadClienteResponse createCadClienteResponse() { + return new CadClienteResponse(); + } + + /** + * Create an instance of {@link CadLinhaResponse } + * + */ + public CadLinhaResponse createCadLinhaResponse() { + return new CadLinhaResponse(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadReceitaDespesa }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadReceitaDespesa") + public JAXBElement createCadReceitaDespesa(CadReceitaDespesa value) { + return new JAXBElement(_CadReceitaDespesa_QNAME, CadReceitaDespesa.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BuscarReceitaDespesaResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "buscarReceitaDespesaResponse") + public JAXBElement createBuscarReceitaDespesaResponse(BuscarReceitaDespesaResponse value) { + return new JAXBElement(_BuscarReceitaDespesaResponse_QNAME, BuscarReceitaDespesaResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadEstadoResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadEstadoResponse") + public JAXBElement createCadEstadoResponse(CadEstadoResponse value) { + return new JAXBElement(_CadEstadoResponse_QNAME, CadEstadoResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadLocalidadeResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadLocalidadeResponse") + public JAXBElement createCadLocalidadeResponse(CadLocalidadeResponse value) { + return new JAXBElement(_CadLocalidadeResponse_QNAME, CadLocalidadeResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadCliente }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadCliente") + public JAXBElement createCadCliente(CadCliente value) { + return new JAXBElement(_CadCliente_QNAME, CadCliente.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadEstado }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadEstado") + public JAXBElement createCadEstado(CadEstado value) { + return new JAXBElement(_CadEstado_QNAME, CadEstado.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BuscarBilhetes }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "buscarBilhetes") + public JAXBElement createBuscarBilhetes(BuscarBilhetes value) { + return new JAXBElement(_BuscarBilhetes_QNAME, BuscarBilhetes.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadLinha }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadLinha") + public JAXBElement createCadLinha(CadLinha value) { + return new JAXBElement(_CadLinha_QNAME, CadLinha.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadBeneficioResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadBeneficioResponse") + public JAXBElement createCadBeneficioResponse(CadBeneficioResponse value) { + return new JAXBElement(_CadBeneficioResponse_QNAME, CadBeneficioResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadAgenciaResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadAgenciaResponse") + public JAXBElement createCadAgenciaResponse(CadAgenciaResponse value) { + return new JAXBElement(_CadAgenciaResponse_QNAME, CadAgenciaResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadLinhaResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadLinhaResponse") + public JAXBElement createCadLinhaResponse(CadLinhaResponse value) { + return new JAXBElement(_CadLinhaResponse_QNAME, CadLinhaResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BuscarBilhetesInconsistente }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "buscarBilhetesInconsistente") + public JAXBElement createBuscarBilhetesInconsistente(BuscarBilhetesInconsistente value) { + return new JAXBElement(_BuscarBilhetesInconsistente_QNAME, BuscarBilhetesInconsistente.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadReceitaDespesaResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadReceitaDespesaResponse") + public JAXBElement createCadReceitaDespesaResponse(CadReceitaDespesaResponse value) { + return new JAXBElement(_CadReceitaDespesaResponse_QNAME, CadReceitaDespesaResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadBilheteiroResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadBilheteiroResponse") + public JAXBElement createCadBilheteiroResponse(CadBilheteiroResponse value) { + return new JAXBElement(_CadBilheteiroResponse_QNAME, CadBilheteiroResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadFormaPagamento }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadFormaPagamento") + public JAXBElement createCadFormaPagamento(CadFormaPagamento value) { + return new JAXBElement(_CadFormaPagamento_QNAME, CadFormaPagamento.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadFormaPagamentoResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadFormaPagamentoResponse") + public JAXBElement createCadFormaPagamentoResponse(CadFormaPagamentoResponse value) { + return new JAXBElement(_CadFormaPagamentoResponse_QNAME, CadFormaPagamentoResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadClienteResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadClienteResponse") + public JAXBElement createCadClienteResponse(CadClienteResponse value) { + return new JAXBElement(_CadClienteResponse_QNAME, CadClienteResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BuscarBilhetesInconsistenteResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "buscarBilhetesInconsistenteResponse") + public JAXBElement createBuscarBilhetesInconsistenteResponse(BuscarBilhetesInconsistenteResponse value) { + return new JAXBElement(_BuscarBilhetesInconsistenteResponse_QNAME, BuscarBilhetesInconsistenteResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BuscarBilhetesResponse }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "buscarBilhetesResponse") + public JAXBElement createBuscarBilhetesResponse(BuscarBilhetesResponse value) { + return new JAXBElement(_BuscarBilhetesResponse_QNAME, BuscarBilhetesResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BuscarReceitaDespesa }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "buscarReceitaDespesa") + public JAXBElement createBuscarReceitaDespesa(BuscarReceitaDespesa value) { + return new JAXBElement(_BuscarReceitaDespesa_QNAME, BuscarReceitaDespesa.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadBilheteiro }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadBilheteiro") + public JAXBElement createCadBilheteiro(CadBilheteiro value) { + return new JAXBElement(_CadBilheteiro_QNAME, CadBilheteiro.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadBeneficio }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadBeneficio") + public JAXBElement createCadBeneficio(CadBeneficio value) { + return new JAXBElement(_CadBeneficio_QNAME, CadBeneficio.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadLocalidade }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadLocalidade") + public JAXBElement createCadLocalidade(CadLocalidade value) { + return new JAXBElement(_CadLocalidade_QNAME, CadLocalidade.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CadAgencia }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://ws.hstcajservice.rjconsultores.com/", name = "cadAgencia") + public JAXBElement createCadAgencia(CadAgencia value) { + return new JAXBElement(_CadAgencia_QNAME, CadAgencia.class, null, value); + } + +}