Commit Inicial

master
fabiorj 2021-11-26 20:07:34 -03:00
commit 25b44ac6a6
2203 changed files with 229770 additions and 0 deletions

10
.gitignore vendored 100644
View File

@ -0,0 +1,10 @@
/.classpath
/.project
/.settings/org.eclipse.jdt.core.prefs
/.settings/org.eclipse.jdt.ui.prefs
/.settings/org.eclipse.m2e.core.prefs
/.settings/org.eclipse.wst.common.component
/.settings/org.eclipse.wst.common.project.facet.core.xml
/.settings/org.eclipse.wst.validation.prefs
/.settings/org.hibernate.eclipse.console.prefs
/.settings/org.jboss.ide.eclipse.as.core.prefs

350
pom.xml 100644
View File

@ -0,0 +1,350 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>modelWeb</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>br.com.rjconsultores</groupId>
<artifactId>brazilutils</artifactId>
<version>0.1.1</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>jdbc</groupId>
<artifactId>jdbc-stdext</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ojdbc14</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-transaction</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>3.0.7.RELEASE</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>3.0.7.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-ldap</artifactId>
<version>3.0.7.RELEASE</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>3.0.7.RELEASE</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>3.0.7.RELEASE</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.zkoss.common</groupId>
<artifactId>zcommon</artifactId>
<version>5.0.9</version>
</dependency>
<dependency>
<groupId>org.zkoss.zk</groupId>
<artifactId>zkplus</artifactId>
<version>5.0.9</version>
</dependency>
<dependency>
<groupId>org.zkoss.zk</groupId>
<artifactId>zul</artifactId>
<version>5.0.9</version>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<version>2.1.7</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>5.1.0</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports-javaflow</artifactId>
<version>5.1.0</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports-fonts</artifactId>
<version>5.1.0</version>
</dependency>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>com.google.code.maven-play-plugin.org.apache.commons</groupId>
<artifactId>commons-javaflow</artifactId>
<version>20060411</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-legacy</artifactId>
<version>4.0.2.GA</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<artifactId>
hibernate-commons-annotations
</artifactId>
<groupId>org.hibernate</groupId>
</exclusion>
<exclusion>
<artifactId>hibernate-core</artifactId>
<groupId>org.hibernate</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.1.Final</version>
</dependency>
<dependency>
<groupId>commons-dbutils</groupId>
<artifactId>commons-dbutils</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.3.1</version>
</dependency>
<!--pra cima esta ok -->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.8</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.8</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>jaxrs-api</artifactId>
<version>2.3.1.GA</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>net.sourceforge.jexcelapi</groupId>
<artifactId>jxl</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.4.4</version>
</dependency>
<dependency>
<groupId>br.com.rjconsultores</groupId>
<artifactId>GeneradorBoletosCNAB</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>br.com.rjconsultores</groupId>
<artifactId>WSTotvs</artifactId>
<version>0.0.1-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.tycho</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>br.com.rjconsultores</groupId>
<artifactId>WSAG</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.9</version>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.servlet</groupId>
<artifactId>jboss-servlet-api_3.0_spec</artifactId>
<version>1.0.0.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.12</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.0.b2</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>3.6.6.Final</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>3.0.0.GA</version>
</dependency>
<dependency>
<groupId>br.com.rjconsultores</groupId>
<artifactId>Auditador</artifactId>
<version>0.0.1-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
<version>4.3.1</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>Cp1252</encoding>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
</dependencyManagement>
</project>

View File

@ -0,0 +1,3 @@
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.8.3
Created-By: 1.7.0-b147 (Oracle Corporation)

View File

@ -0,0 +1,134 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.29 às 06:11:44 PM BRT
//
package br.inf.portalfiscal.bpe;
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 javax.xml.bind.annotation.XmlType;
/**
* <p>Classe Java de anonymous complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="descEvento">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;enumeration value="Não Embarque"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt"/>
* &lt;element name="xJust" type="{http://www.portalfiscal.inf.br/bpe}TJust"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"descEvento",
"nProt",
"xJust"
})
@XmlRootElement(name = "evNaoEmbBPe")
public class EvNaoEmbBPe {
@XmlElement(required = true)
protected String descEvento;
@XmlElement(required = true)
protected String nProt;
@XmlElement(required = true)
protected String xJust;
/**
* Obtém o valor da propriedade descEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescEvento() {
return descEvento;
}
/**
* Define o valor da propriedade descEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescEvento(String value) {
this.descEvento = value;
}
/**
* Obtém o valor da propriedade nProt.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNProt() {
return nProt;
}
/**
* Define o valor da propriedade nProt.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNProt(String value) {
this.nProt = value;
}
/**
* Obtém o valor da propriedade xJust.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXJust() {
return xJust;
}
/**
* Define o valor da propriedade xJust.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXJust(String value) {
this.xJust = value;
}
}

View File

@ -0,0 +1,316 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
//
package br.inf.portalfiscal.bpe;
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 br.inf.portalfiscal.bpe package.
* <p>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 _RetBPe_QNAME = new QName("http://www.portalfiscal.inf.br/bpe", "retBPe");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.inf.portalfiscal.bpe
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link TImp }
*
*/
public TImp createTImp() {
return new TImp();
}
/**
* Create an instance of {@link TProtBPe }
*
*/
public TProtBPe createTProtBPe() {
return new TProtBPe();
}
/**
* Create an instance of {@link TBPe }
*
*/
public TBPe createTBPe() {
return new TBPe();
}
/**
* Create an instance of {@link TBPe.InfBPe }
*
*/
public TBPe.InfBPe createTBPeInfBPe() {
return new TBPe.InfBPe();
}
/**
* Create an instance of {@link TBPe.InfBPe.Pag }
*
*/
public TBPe.InfBPe.Pag createTBPeInfBPePag() {
return new TBPe.InfBPe.Pag();
}
/**
* Create an instance of {@link TBPe.InfBPe.Imp }
*
*/
public TBPe.InfBPe.Imp createTBPeInfBPeImp() {
return new TBPe.InfBPe.Imp();
}
/**
* Create an instance of {@link TBPe.InfBPe.InfValorBPe }
*
*/
public TBPe.InfBPe.InfValorBPe createTBPeInfBPeInfValorBPe() {
return new TBPe.InfBPe.InfValorBPe();
}
/**
* Create an instance of {@link TBPe.InfBPe.InfViagem }
*
*/
public TBPe.InfBPe.InfViagem createTBPeInfBPeInfViagem() {
return new TBPe.InfBPe.InfViagem();
}
/**
* Create an instance of {@link TBPe.InfBPe.InfPassagem }
*
*/
public TBPe.InfBPe.InfPassagem createTBPeInfBPeInfPassagem() {
return new TBPe.InfBPe.InfPassagem();
}
/**
* Create an instance of {@link TRetBPe }
*
*/
public TRetBPe createTRetBPe() {
return new TRetBPe();
}
/**
* Create an instance of {@link TEnviBPe }
*
*/
public TEnviBPe createTEnviBPe() {
return new TEnviBPe();
}
/**
* Create an instance of {@link TEndereco }
*
*/
public TEndereco createTEndereco() {
return new TEndereco();
}
/**
* Create an instance of {@link TEndeEmi }
*
*/
public TEndeEmi createTEndeEmi() {
return new TEndeEmi();
}
/**
* Create an instance of {@link TImp.ICMS00 }
*
*/
public TImp.ICMS00 createTImpICMS00() {
return new TImp.ICMS00();
}
/**
* Create an instance of {@link TImp.ICMS20 }
*
*/
public TImp.ICMS20 createTImpICMS20() {
return new TImp.ICMS20();
}
/**
* Create an instance of {@link TImp.ICMS45 }
*
*/
public TImp.ICMS45 createTImpICMS45() {
return new TImp.ICMS45();
}
/**
* Create an instance of {@link TImp.ICMS90 }
*
*/
public TImp.ICMS90 createTImpICMS90() {
return new TImp.ICMS90();
}
/**
* Create an instance of {@link TImp.ICMSOutraUF }
*
*/
public TImp.ICMSOutraUF createTImpICMSOutraUF() {
return new TImp.ICMSOutraUF();
}
/**
* Create an instance of {@link TImp.ICMSSN }
*
*/
public TImp.ICMSSN createTImpICMSSN() {
return new TImp.ICMSSN();
}
/**
* Create an instance of {@link TProtBPe.InfProt }
*
*/
public TProtBPe.InfProt createTProtBPeInfProt() {
return new TProtBPe.InfProt();
}
/**
* Create an instance of {@link TBPe.InfBPeSupl }
*
*/
public TBPe.InfBPeSupl createTBPeInfBPeSupl() {
return new TBPe.InfBPeSupl();
}
/**
* Create an instance of {@link TBPe.InfBPe.Ide }
*
*/
public TBPe.InfBPe.Ide createTBPeInfBPeIde() {
return new TBPe.InfBPe.Ide();
}
/**
* Create an instance of {@link TBPe.InfBPe.Emit }
*
*/
public TBPe.InfBPe.Emit createTBPeInfBPeEmit() {
return new TBPe.InfBPe.Emit();
}
/**
* Create an instance of {@link TBPe.InfBPe.Comp }
*
*/
public TBPe.InfBPe.Comp createTBPeInfBPeComp() {
return new TBPe.InfBPe.Comp();
}
/**
* Create an instance of {@link TBPe.InfBPe.Agencia }
*
*/
public TBPe.InfBPe.Agencia createTBPeInfBPeAgencia() {
return new TBPe.InfBPe.Agencia();
}
/**
* Create an instance of {@link TBPe.InfBPe.InfBPeSub }
*
*/
public TBPe.InfBPe.InfBPeSub createTBPeInfBPeInfBPeSub() {
return new TBPe.InfBPe.InfBPeSub();
}
/**
* Create an instance of {@link TBPe.InfBPe.AutXML }
*
*/
public TBPe.InfBPe.AutXML createTBPeInfBPeAutXML() {
return new TBPe.InfBPe.AutXML();
}
/**
* Create an instance of {@link TBPe.InfBPe.InfAdic }
*
*/
public TBPe.InfBPe.InfAdic createTBPeInfBPeInfAdic() {
return new TBPe.InfBPe.InfAdic();
}
/**
* Create an instance of {@link TBPe.InfBPe.Pag.Card }
*
*/
public TBPe.InfBPe.Pag.Card createTBPeInfBPePagCard() {
return new TBPe.InfBPe.Pag.Card();
}
/**
* Create an instance of {@link TBPe.InfBPe.Imp.ICMSUFFim }
*
*/
public TBPe.InfBPe.Imp.ICMSUFFim createTBPeInfBPeImpICMSUFFim() {
return new TBPe.InfBPe.Imp.ICMSUFFim();
}
/**
* Create an instance of {@link TBPe.InfBPe.InfValorBPe.Comp }
*
*/
public TBPe.InfBPe.InfValorBPe.Comp createTBPeInfBPeInfValorBPeComp() {
return new TBPe.InfBPe.InfValorBPe.Comp();
}
/**
* Create an instance of {@link TBPe.InfBPe.InfViagem.InfTravessia }
*
*/
public TBPe.InfBPe.InfViagem.InfTravessia createTBPeInfBPeInfViagemInfTravessia() {
return new TBPe.InfBPe.InfViagem.InfTravessia();
}
/**
* Create an instance of {@link TBPe.InfBPe.InfPassagem.InfPassageiro }
*
*/
public TBPe.InfBPe.InfPassagem.InfPassageiro createTBPeInfBPeInfPassagemInfPassageiro() {
return new TBPe.InfBPe.InfPassagem.InfPassageiro();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link TRetBPe }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://www.portalfiscal.inf.br/bpe", name = "retBPe")
public JAXBElement<TRetBPe> createRetBPe(TRetBPe value) {
return new JAXBElement<TRetBPe>(_RetBPe_QNAME, TRetBPe.class, null, value);
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,155 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.10.24 às 07:38:45 PM BRST
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Tipo Pedido de Consulta da Situação Atual do Bilhete de Passagem Eletrônico
*
* <p>Classe Java de TConsSitBPe complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TConsSitBPe">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="xServ" type="{http://www.portalfiscal.inf.br/bpe}TServ"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
* &lt;/sequence>
* &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerConsSitBPe" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TConsSitBPe", propOrder = {
"tpAmb",
"xServ",
"chBPe"
})
public class TConsSitBPe {
@XmlElement(required = true)
protected String tpAmb;
@XmlElement(required = true)
protected String xServ;
@XmlElement(required = true)
protected String chBPe;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade tpAmb.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpAmb() {
return tpAmb;
}
/**
* Define o valor da propriedade tpAmb.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpAmb(String value) {
this.tpAmb = value;
}
/**
* Obtém o valor da propriedade xServ.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXServ() {
return xServ;
}
/**
* Define o valor da propriedade xServ.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXServ(String value) {
this.xServ = value;
}
/**
* Obtém o valor da propriedade chBPe.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChBPe() {
return chBPe;
}
/**
* Define o valor da propriedade chBPe.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChBPe(String value) {
this.chBPe = value;
}
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
}

View File

@ -0,0 +1,371 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Tipo Dados do Endereço
*
* <p>Classe Java de TEndeEmi complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TEndeEmi">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="xLgr">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="2"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nro">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xCpl" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xBairro">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="2"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="cMun" type="{http://www.portalfiscal.inf.br/bpe}TCodMunIBGE"/>
* &lt;element name="xMun">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="2"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="CEP" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{8}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="UF" type="{http://www.portalfiscal.inf.br/bpe}TUf_sem_EX"/>
* &lt;element name="fone" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{7,12}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="email" type="{http://www.portalfiscal.inf.br/bpe}TEmail" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEndeEmi", propOrder = {
"xLgr",
"nro",
"xCpl",
"xBairro",
"cMun",
"xMun",
"cep",
"uf",
"fone",
"email"
})
public class TEndeEmi {
@XmlElement(required = true)
protected String xLgr;
@XmlElement(required = true)
protected String nro;
protected String xCpl;
@XmlElement(required = true)
protected String xBairro;
@XmlElement(required = true)
protected String cMun;
@XmlElement(required = true)
protected String xMun;
@XmlElement(name = "CEP")
protected String cep;
@XmlElement(name = "UF", required = true)
@XmlSchemaType(name = "string")
protected TUfSemEX uf;
protected String fone;
protected String email;
/**
* Obtém o valor da propriedade xLgr.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXLgr() {
return xLgr;
}
/**
* Define o valor da propriedade xLgr.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXLgr(String value) {
this.xLgr = value;
}
/**
* Obtém o valor da propriedade nro.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNro() {
return nro;
}
/**
* Define o valor da propriedade nro.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNro(String value) {
this.nro = value;
}
/**
* Obtém o valor da propriedade xCpl.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXCpl() {
return xCpl;
}
/**
* Define o valor da propriedade xCpl.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXCpl(String value) {
this.xCpl = value;
}
/**
* Obtém o valor da propriedade xBairro.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXBairro() {
return xBairro;
}
/**
* Define o valor da propriedade xBairro.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXBairro(String value) {
this.xBairro = value;
}
/**
* Obtém o valor da propriedade cMun.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCMun() {
return cMun;
}
/**
* Define o valor da propriedade cMun.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCMun(String value) {
this.cMun = value;
}
/**
* Obtém o valor da propriedade xMun.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXMun() {
return xMun;
}
/**
* Define o valor da propriedade xMun.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXMun(String value) {
this.xMun = value;
}
/**
* Obtém o valor da propriedade cep.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCEP() {
return cep;
}
/**
* Define o valor da propriedade cep.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCEP(String value) {
this.cep = value;
}
/**
* Obtém o valor da propriedade uf.
*
* @return
* possible object is
* {@link TUfSemEX }
*
*/
public TUfSemEX getUF() {
return uf;
}
/**
* Define o valor da propriedade uf.
*
* @param value
* allowed object is
* {@link TUfSemEX }
*
*/
public void setUF(TUfSemEX value) {
this.uf = value;
}
/**
* Obtém o valor da propriedade fone.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFone() {
return fone;
}
/**
* Define o valor da propriedade fone.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFone(String value) {
this.fone = value;
}
/**
* Obtém o valor da propriedade email.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Define o valor da propriedade email.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
}

View File

@ -0,0 +1,439 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Tipo Dados do Endereço
*
* <p>Classe Java de TEndereco complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TEndereco">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="xLgr">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="255"/>
* &lt;minLength value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nro">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xCpl" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xBairro">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="cMun" type="{http://www.portalfiscal.inf.br/bpe}TCodMunIBGE"/>
* &lt;element name="xMun">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="CEP" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{8}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="UF" type="{http://www.portalfiscal.inf.br/bpe}TUf"/>
* &lt;element name="cPais" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{1,4}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xPais" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;maxLength value="60"/>
* &lt;minLength value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="fone" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{7,12}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="email" type="{http://www.portalfiscal.inf.br/bpe}TEmail" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEndereco", propOrder = {
"xLgr",
"nro",
"xCpl",
"xBairro",
"cMun",
"xMun",
"cep",
"uf",
"cPais",
"xPais",
"fone",
"email"
})
public class TEndereco {
@XmlElement(required = true)
protected String xLgr;
@XmlElement(required = true)
protected String nro;
protected String xCpl;
@XmlElement(required = true)
protected String xBairro;
@XmlElement(required = true)
protected String cMun;
@XmlElement(required = true)
protected String xMun;
@XmlElement(name = "CEP")
protected String cep;
@XmlElement(name = "UF", required = true)
@XmlSchemaType(name = "string")
protected TUf uf;
protected String cPais;
protected String xPais;
protected String fone;
protected String email;
/**
* Obtém o valor da propriedade xLgr.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXLgr() {
return xLgr;
}
/**
* Define o valor da propriedade xLgr.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXLgr(String value) {
this.xLgr = value;
}
/**
* Obtém o valor da propriedade nro.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNro() {
return nro;
}
/**
* Define o valor da propriedade nro.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNro(String value) {
this.nro = value;
}
/**
* Obtém o valor da propriedade xCpl.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXCpl() {
return xCpl;
}
/**
* Define o valor da propriedade xCpl.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXCpl(String value) {
this.xCpl = value;
}
/**
* Obtém o valor da propriedade xBairro.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXBairro() {
return xBairro;
}
/**
* Define o valor da propriedade xBairro.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXBairro(String value) {
this.xBairro = value;
}
/**
* Obtém o valor da propriedade cMun.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCMun() {
return cMun;
}
/**
* Define o valor da propriedade cMun.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCMun(String value) {
this.cMun = value;
}
/**
* Obtém o valor da propriedade xMun.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXMun() {
return xMun;
}
/**
* Define o valor da propriedade xMun.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXMun(String value) {
this.xMun = value;
}
/**
* Obtém o valor da propriedade cep.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCEP() {
return cep;
}
/**
* Define o valor da propriedade cep.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCEP(String value) {
this.cep = value;
}
/**
* Obtém o valor da propriedade uf.
*
* @return
* possible object is
* {@link TUf }
*
*/
public TUf getUF() {
return uf;
}
/**
* Define o valor da propriedade uf.
*
* @param value
* allowed object is
* {@link TUf }
*
*/
public void setUF(TUf value) {
this.uf = value;
}
/**
* Obtém o valor da propriedade cPais.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCPais() {
return cPais;
}
/**
* Define o valor da propriedade cPais.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCPais(String value) {
this.cPais = value;
}
/**
* Obtém o valor da propriedade xPais.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXPais() {
return xPais;
}
/**
* Define o valor da propriedade xPais.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXPais(String value) {
this.xPais = value;
}
/**
* Obtém o valor da propriedade fone.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFone() {
return fone;
}
/**
* Define o valor da propriedade fone.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFone(String value) {
this.fone = value;
}
/**
* Obtém o valor da propriedade email.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Define o valor da propriedade email.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
}

View File

@ -0,0 +1,127 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Tipo Pedido de Concessão de Autorização de BP-e
*
* <p>Classe Java de TEnviBPe complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TEnviBPe">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="idLote" type="{http://www.portalfiscal.inf.br/bpe}TIdLote"/>
* &lt;element name="BPe" type="{http://www.portalfiscal.inf.br/bpe}TBPe"/>
* &lt;/sequence>
* &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerBPe" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEnviBPe", propOrder = {
"idLote",
"bPe"
})
public class TEnviBPe {
@XmlElement(required = true)
protected String idLote;
@XmlElement(name = "BPe", required = true)
protected TBPe bPe;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade idLote.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdLote() {
return idLote;
}
/**
* Define o valor da propriedade idLote.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdLote(String value) {
this.idLote = value;
}
/**
* Obtém o valor da propriedade bPe.
*
* @return
* possible object is
* {@link TBPe }
*
*/
public TBPe getBPe() {
return bPe;
}
/**
* Define o valor da propriedade bPe.
*
* @param value
* allowed object is
* {@link TBPe }
*
*/
public void setBPe(TBPe value) {
this.bPe = value;
}
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
}

View File

@ -0,0 +1,599 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.29 às 06:11:44 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3c.dom.Element;
/**
* Tipo Evento
*
* <p>Classe Java de TEvento complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TEvento">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="infEvento">
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/bpe}TCOrgaoIBGE"/>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/bpe}TCnpj"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
* &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
* &lt;element name="tpEvento">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{6}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nSeqEvento">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[1-9][0-9]|0?[1-9]"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="detEvento">
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;any processContents='skip'/>
* &lt;/sequence>
* &lt;attribute name="versaoEvento" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="1\.(0[0-9]|[1-9][0-9])"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* &lt;/element>
* &lt;/sequence>
* &lt;attribute name="Id" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID">
* &lt;pattern value="ID[0-9]{52}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* &lt;/element>
* &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature"/>
* &lt;/sequence>
* &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerEvento" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEvento", propOrder = {
"infEvento",
// "signature"
})
@XmlRootElement(name = "eventoBPe")
public class TEvento {
@XmlElement(required = true)
protected TEvento.InfEvento infEvento;
// @XmlElement(name = "Signature" required = true)
// protected SignatureType signature;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade infEvento.
*
* @return
* possible object is
* {@link TEvento.InfEvento }
*
*/
public TEvento.InfEvento getInfEvento() {
return infEvento;
}
/**
* Define o valor da propriedade infEvento.
*
* @param value
* allowed object is
* {@link TEvento.InfEvento }
*
*/
public void setInfEvento(TEvento.InfEvento value) {
this.infEvento = value;
}
/**
* Obtém o valor da propriedade signature.
*
* @return
* possible object is
* {@link SignatureType }
*
*/
// public SignatureType getSignature() {
// return signature;
// }
/**
* Define o valor da propriedade signature.
*
* @param value
* allowed object is
* {@link SignatureType }
*
*/
// public void setSignature(SignatureType value) {
// this.signature = value;
// }
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
/**
* <p>Classe Java de anonymous complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/bpe}TCOrgaoIBGE"/>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/bpe}TCnpj"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
* &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
* &lt;element name="tpEvento">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{6}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nSeqEvento">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[1-9][0-9]|0?[1-9]"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="detEvento">
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;any processContents='skip'/>
* &lt;/sequence>
* &lt;attribute name="versaoEvento" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="1\.(0[0-9]|[1-9][0-9])"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* &lt;/element>
* &lt;/sequence>
* &lt;attribute name="Id" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID">
* &lt;pattern value="ID[0-9]{52}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"cOrgao",
"tpAmb",
"cnpj",
"chBPe",
"dhEvento",
"tpEvento",
"nSeqEvento",
"detEvento"
})
public static class InfEvento {
@XmlElement(required = true)
protected String cOrgao;
@XmlElement(required = true)
protected String tpAmb;
@XmlElement(name = "CNPJ", required = true)
protected String cnpj;
@XmlElement(required = true)
protected String chBPe;
@XmlElement(required = true)
protected String dhEvento;
@XmlElement(required = true)
protected String tpEvento;
@XmlElement(required = true)
protected String nSeqEvento;
@XmlElement(required = true)
protected TEvento.InfEvento.DetEvento detEvento;
@XmlAttribute(name = "Id", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
protected String id;
/**
* Obtém o valor da propriedade cOrgao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCOrgao() {
return cOrgao;
}
/**
* Define o valor da propriedade cOrgao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCOrgao(String value) {
this.cOrgao = value;
}
/**
* Obtém o valor da propriedade tpAmb.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpAmb() {
return tpAmb;
}
/**
* Define o valor da propriedade tpAmb.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpAmb(String value) {
this.tpAmb = value;
}
/**
* Obtém o valor da propriedade cnpj.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCNPJ() {
return cnpj;
}
/**
* Define o valor da propriedade cnpj.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCNPJ(String value) {
this.cnpj = value;
}
/**
* Obtém o valor da propriedade chBPe.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChBPe() {
return chBPe;
}
/**
* Define o valor da propriedade chBPe.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChBPe(String value) {
this.chBPe = value;
}
/**
* Obtém o valor da propriedade dhEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDhEvento() {
return dhEvento;
}
/**
* Define o valor da propriedade dhEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDhEvento(String value) {
this.dhEvento = value;
}
/**
* Obtém o valor da propriedade tpEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpEvento() {
return tpEvento;
}
/**
* Define o valor da propriedade tpEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpEvento(String value) {
this.tpEvento = value;
}
/**
* Obtém o valor da propriedade nSeqEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNSeqEvento() {
return nSeqEvento;
}
/**
* Define o valor da propriedade nSeqEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNSeqEvento(String value) {
this.nSeqEvento = value;
}
/**
* Obtém o valor da propriedade detEvento.
*
* @return
* possible object is
* {@link TEvento.InfEvento.DetEvento }
*
*/
public TEvento.InfEvento.DetEvento getDetEvento() {
return detEvento;
}
/**
* Define o valor da propriedade detEvento.
*
* @param value
* allowed object is
* {@link TEvento.InfEvento.DetEvento }
*
*/
public void setDetEvento(TEvento.InfEvento.DetEvento value) {
this.detEvento = value;
}
/**
* Obtém o valor da propriedade id.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Define o valor da propriedade id.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* <p>Classe Java de anonymous complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;any processContents='skip'/>
* &lt;/sequence>
* &lt;attribute name="versaoEvento" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="1\.(0[0-9]|[1-9][0-9])"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"any"
})
public static class DetEvento {
@XmlAnyElement
protected Element any;
@XmlAttribute(name = "versaoEvento", required = true)
protected String versaoEvento;
/**
* Obtém o valor da propriedade any.
*
* @return
* possible object is
* {@link Element }
*
*/
public Element getAny() {
return any;
}
/**
* Define o valor da propriedade any.
*
* @param value
* allowed object is
* {@link Element }
*
*/
public void setAny(Element value) {
this.any = value;
}
/**
* Obtém o valor da propriedade versaoEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersaoEvento() {
return versaoEvento;
}
/**
* Define o valor da propriedade versaoEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersaoEvento(String value) {
this.versaoEvento = value;
}
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,154 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.29 às 06:11:44 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Tipo procEvento
*
* <p>Classe Java de TProcEvento complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TProcEvento">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="eventoBPe" type="{http://www.portalfiscal.inf.br/bpe}TEvento"/>
* &lt;element name="retEventoBPe" type="{http://www.portalfiscal.inf.br/bpe}TRetEvento"/>
* &lt;/sequence>
* &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerEvento" />
* &lt;attribute name="ipTransmissor" type="{http://www.portalfiscal.inf.br/bpe}TIPv4" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TProcEvento", propOrder = {
"eventoBPe",
"retEventoBPe"
})
public class TProcEvento {
@XmlElement(required = true)
protected TEvento eventoBPe;
@XmlElement(required = true)
protected TRetEvento retEventoBPe;
@XmlAttribute(name = "versao", required = true)
protected String versao;
@XmlAttribute(name = "ipTransmissor")
protected String ipTransmissor;
/**
* Obtém o valor da propriedade eventoBPe.
*
* @return
* possible object is
* {@link TEvento }
*
*/
public TEvento getEventoBPe() {
return eventoBPe;
}
/**
* Define o valor da propriedade eventoBPe.
*
* @param value
* allowed object is
* {@link TEvento }
*
*/
public void setEventoBPe(TEvento value) {
this.eventoBPe = value;
}
/**
* Obtém o valor da propriedade retEventoBPe.
*
* @return
* possible object is
* {@link TRetEvento }
*
*/
public TRetEvento getRetEventoBPe() {
return retEventoBPe;
}
/**
* Define o valor da propriedade retEventoBPe.
*
* @param value
* allowed object is
* {@link TRetEvento }
*
*/
public void setRetEventoBPe(TRetEvento value) {
this.retEventoBPe = value;
}
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
/**
* Obtém o valor da propriedade ipTransmissor.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIpTransmissor() {
return ipTransmissor;
}
/**
* Define o valor da propriedade ipTransmissor.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIpTransmissor(String value) {
this.ipTransmissor = value;
}
}

View File

@ -0,0 +1,436 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Tipo Protocolo de status resultado do processamento do BP-e (Modelo 63)
*
* <p>Classe Java de TProtBPe complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TProtBPe">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="infProt">
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
* &lt;element name="dhRecbto" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
* &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
* &lt;element name="digVal" type="{http://www.w3.org/2000/09/xmldsig#}DigestValueType" minOccurs="0"/>
* &lt;element name="cStat">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TStat">
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
* &lt;/sequence>
* &lt;attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* &lt;/element>
* &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerBPe" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TProtBPe", propOrder = {
"infProt",
// "signature"
})
public class TProtBPe {
@XmlElement(required = true)
protected TProtBPe.InfProt infProt;
// @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
// protected SignatureType signature;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade infProt.
*
* @return
* possible object is
* {@link TProtBPe.InfProt }
*
*/
public TProtBPe.InfProt getInfProt() {
return infProt;
}
/**
* Define o valor da propriedade infProt.
*
* @param value
* allowed object is
* {@link TProtBPe.InfProt }
*
*/
public void setInfProt(TProtBPe.InfProt value) {
this.infProt = value;
}
/**
* Obtém o valor da propriedade signature.
*
* @return
* possible object is
* {@link SignatureType }
*
*/
// public SignatureType getSignature() {
// return signature;
// }
/**
* Define o valor da propriedade signature.
*
* @param value
* allowed object is
* {@link SignatureType }
*
// */
// public void setSignature(SignatureType value) {
// this.signature = value;
// }
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
/**
* <p>Classe Java de anonymous complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
* &lt;element name="dhRecbto" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
* &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
* &lt;element name="digVal" type="{http://www.w3.org/2000/09/xmldsig#}DigestValueType" minOccurs="0"/>
* &lt;element name="cStat">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TStat">
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
* &lt;/sequence>
* &lt;attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"tpAmb",
"verAplic",
"chBPe",
"dhRecbto",
"nProt",
/*"digVal",*/
"cStat",
"xMotivo"
})
public static class InfProt {
@XmlElement(required = true)
protected String tpAmb;
@XmlElement(required = true)
protected String verAplic;
@XmlElement(required = true)
protected String chBPe;
@XmlElement(required = true)
protected String dhRecbto;
protected String nProt;
// protected byte[] digVal;
@XmlElement(required = true)
protected String cStat;
@XmlElement(required = true)
protected String xMotivo;
@XmlAttribute(name = "Id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
/**
* Obtém o valor da propriedade tpAmb.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpAmb() {
return tpAmb;
}
/**
* Define o valor da propriedade tpAmb.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpAmb(String value) {
this.tpAmb = value;
}
/**
* Obtém o valor da propriedade verAplic.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerAplic() {
return verAplic;
}
/**
* Define o valor da propriedade verAplic.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerAplic(String value) {
this.verAplic = value;
}
/**
* Obtém o valor da propriedade chBPe.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChBPe() {
return chBPe;
}
/**
* Define o valor da propriedade chBPe.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChBPe(String value) {
this.chBPe = value;
}
/**
* Obtém o valor da propriedade dhRecbto.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDhRecbto() {
return dhRecbto;
}
/**
* Define o valor da propriedade dhRecbto.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDhRecbto(String value) {
this.dhRecbto = value;
}
/**
* Obtém o valor da propriedade nProt.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNProt() {
return nProt;
}
/**
* Define o valor da propriedade nProt.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNProt(String value) {
this.nProt = value;
}
// /**
// * Obtém o valor da propriedade digVal.
// *
// * @return
// * possible object is
// * byte[]
// */
// public byte[] getDigVal() {
// return digVal;
// }
//
// /**
// * Define o valor da propriedade digVal.
// *
// * @param value
// * allowed object is
// * byte[]
// */
// public void setDigVal(byte[] value) {
// this.digVal = value;
// }
/**
* Obtém o valor da propriedade cStat.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCStat() {
return cStat;
}
/**
* Define o valor da propriedade cStat.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCStat(String value) {
this.cStat = value;
}
/**
* Obtém o valor da propriedade xMotivo.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXMotivo() {
return xMotivo;
}
/**
* Define o valor da propriedade xMotivo.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXMotivo(String value) {
this.xMotivo = value;
}
/**
* Obtém o valor da propriedade id.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Define o valor da propriedade id.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
}
}

View File

@ -0,0 +1,240 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Tipo Retorno do Pedido de Autorização de BP-e (Modelo 63)
*
* <p>Classe Java de TRetBPe complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TRetBPe">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="cUF" type="{http://www.portalfiscal.inf.br/bpe}TCodUfIBGE"/>
* &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
* &lt;element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
* &lt;element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
* &lt;element name="protBPe" type="{http://www.portalfiscal.inf.br/bpe}TProtBPe" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerBPe" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlRootElement(name = "retBPe")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "retBPe", propOrder = {
"tpAmb",
"cuf",
"verAplic",
"cStat",
"xMotivo",
"protBPe"
})
public class TRetBPe {
@XmlElement(required = true)
protected String tpAmb;
@XmlElement(name = "cUF", required = true)
protected String cuf;
@XmlElement(required = true)
protected String verAplic;
@XmlElement(required = true)
protected String cStat;
@XmlElement(required = true)
protected String xMotivo;
protected TProtBPe protBPe;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade tpAmb.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpAmb() {
return tpAmb;
}
/**
* Define o valor da propriedade tpAmb.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpAmb(String value) {
this.tpAmb = value;
}
/**
* Obtém o valor da propriedade cuf.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCUF() {
return cuf;
}
/**
* Define o valor da propriedade cuf.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCUF(String value) {
this.cuf = value;
}
/**
* Obtém o valor da propriedade verAplic.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerAplic() {
return verAplic;
}
/**
* Define o valor da propriedade verAplic.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerAplic(String value) {
this.verAplic = value;
}
/**
* Obtém o valor da propriedade cStat.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCStat() {
return cStat;
}
/**
* Define o valor da propriedade cStat.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCStat(String value) {
this.cStat = value;
}
/**
* Obtém o valor da propriedade xMotivo.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXMotivo() {
return xMotivo;
}
/**
* Define o valor da propriedade xMotivo.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXMotivo(String value) {
this.xMotivo = value;
}
/**
* Obtém o valor da propriedade protBPe.
*
* @return
* possible object is
* {@link TProtBPe }
*
*/
public TProtBPe getProtBPe() {
return protBPe;
}
/**
* Define o valor da propriedade protBPe.
*
* @param value
* allowed object is
* {@link TProtBPe }
*
*/
public void setProtBPe(TProtBPe value) {
this.protBPe = value;
}
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
}

View File

@ -0,0 +1,343 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.07 às 09:45:52 PM BRT
//
package br.inf.portalfiscal.bpe;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Tipo Resultado da Consulta do Status do Serviço BP-e
*
* <p>Classe Java de TRetConsStatServ complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TRetConsStatServ">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="verAplic">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TVerAplic">
* &lt;whiteSpace value="collapse"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
* &lt;element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
* &lt;element name="cUF" type="{http://www.portalfiscal.inf.br/bpe}TCodUfIBGE"/>
* &lt;element name="dhRecbto" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
* &lt;element name="tMed" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}integer">
* &lt;pattern value="[0-9]{1,4}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="dhRetorno" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC" minOccurs="0"/>
* &lt;element name="xObs" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;minLength value="1"/>
* &lt;maxLength value="255"/>
* &lt;whiteSpace value="collapse"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerConsStat" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlRootElement(name = "retConsStatServBPe")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "retConsStatServBPe", propOrder = {
"tpAmb",
"verAplic",
"cStat",
"xMotivo",
"cuf",
"dhRecbto",
"tMed",
"dhRetorno",
"xObs"
})
public class TRetConsStatServ {
@XmlElement(required = true)
protected String tpAmb;
@XmlElement(required = true)
protected String verAplic;
@XmlElement(required = true)
protected String cStat;
@XmlElement(required = true)
protected String xMotivo;
@XmlElement(name = "cUF", required = true)
protected String cuf;
@XmlElement(required = true)
protected String dhRecbto;
protected BigInteger tMed;
protected String dhRetorno;
protected String xObs;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade tpAmb.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpAmb() {
return tpAmb;
}
/**
* Define o valor da propriedade tpAmb.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpAmb(String value) {
this.tpAmb = value;
}
/**
* Obtém o valor da propriedade verAplic.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerAplic() {
return verAplic;
}
/**
* Define o valor da propriedade verAplic.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerAplic(String value) {
this.verAplic = value;
}
/**
* Obtém o valor da propriedade cStat.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCStat() {
return cStat;
}
/**
* Define o valor da propriedade cStat.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCStat(String value) {
this.cStat = value;
}
/**
* Obtém o valor da propriedade xMotivo.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXMotivo() {
return xMotivo;
}
/**
* Define o valor da propriedade xMotivo.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXMotivo(String value) {
this.xMotivo = value;
}
/**
* Obtém o valor da propriedade cuf.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCUF() {
return cuf;
}
/**
* Define o valor da propriedade cuf.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCUF(String value) {
this.cuf = value;
}
/**
* Obtém o valor da propriedade dhRecbto.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDhRecbto() {
return dhRecbto;
}
/**
* Define o valor da propriedade dhRecbto.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDhRecbto(String value) {
this.dhRecbto = value;
}
/**
* Obtém o valor da propriedade tMed.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getTMed() {
return tMed;
}
/**
* Define o valor da propriedade tMed.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setTMed(BigInteger value) {
this.tMed = value;
}
/**
* Obtém o valor da propriedade dhRetorno.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDhRetorno() {
return dhRetorno;
}
/**
* Define o valor da propriedade dhRetorno.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDhRetorno(String value) {
this.dhRetorno = value;
}
/**
* Obtém o valor da propriedade xObs.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXObs() {
return xObs;
}
/**
* Define o valor da propriedade xObs.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXObs(String value) {
this.xObs = value;
}
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
}

View File

@ -0,0 +1,571 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.29 às 06:11:44 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3._2000._09.xmldsig_.SignatureType;
/**
* Tipo retorno do Evento
*
* <p>Classe Java de TRetEvento complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TRetEvento">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="infEvento">
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
* &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/bpe}TCOrgaoIBGE"/>
* &lt;element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
* &lt;element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe" minOccurs="0"/>
* &lt;element name="tpEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{6}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;minLength value="4"/>
* &lt;maxLength value="60"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nSeqEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[1-9][0-9]|0?[1-9]"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="dhRegEvento" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC" minOccurs="0"/>
* &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="Id">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID">
* &lt;pattern value="ID[0-9]{15}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* &lt;/element>
* &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="versao" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TVerEvento">
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlRootElement(name = "retEventoBPe")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "retEventoBPe", propOrder = {
"infEvento",
// "signature"
})
public class TRetEvento {
@XmlElement(required = true)
protected TRetEvento.InfEvento infEvento;
// @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
// protected SignatureType signature;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade infEvento.
*
* @return
* possible object is
* {@link TRetEvento.InfEvento }
*
*/
public TRetEvento.InfEvento getInfEvento() {
return infEvento;
}
/**
* Define o valor da propriedade infEvento.
*
* @param value
* allowed object is
* {@link TRetEvento.InfEvento }
*
*/
public void setInfEvento(TRetEvento.InfEvento value) {
this.infEvento = value;
}
/**
* Obtém o valor da propriedade signature.
*
* @return
* possible object is
* {@link SignatureType }
*
*/
// public SignatureType getSignature() {
// return signature;
// }
/**
* Define o valor da propriedade signature.
*
* @param value
* allowed object is
* {@link SignatureType }
*
*/
// public void setSignature(SignatureType value) {
// this.signature = value;
// }
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
/**
* <p>Classe Java de anonymous complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
* &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/bpe}TCOrgaoIBGE"/>
* &lt;element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
* &lt;element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe" minOccurs="0"/>
* &lt;element name="tpEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{6}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;minLength value="4"/>
* &lt;maxLength value="60"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nSeqEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[1-9][0-9]|0?[1-9]"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="dhRegEvento" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC" minOccurs="0"/>
* &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="Id">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID">
* &lt;pattern value="ID[0-9]{15}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"tpAmb",
"verAplic",
"cOrgao",
"cStat",
"xMotivo",
"chBPe",
"tpEvento",
"xEvento",
"nSeqEvento",
"dhRegEvento",
"nProt"
})
public static class InfEvento {
@XmlElement(required = true)
protected String tpAmb;
@XmlElement(required = true)
protected String verAplic;
@XmlElement(required = true)
protected String cOrgao;
@XmlElement(required = true)
protected String cStat;
@XmlElement(required = true)
protected String xMotivo;
protected String chBPe;
protected String tpEvento;
protected String xEvento;
protected String nSeqEvento;
protected String dhRegEvento;
protected String nProt;
@XmlAttribute(name = "Id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
protected String id;
/**
* Obtém o valor da propriedade tpAmb.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpAmb() {
return tpAmb;
}
/**
* Define o valor da propriedade tpAmb.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpAmb(String value) {
this.tpAmb = value;
}
/**
* Obtém o valor da propriedade verAplic.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerAplic() {
return verAplic;
}
/**
* Define o valor da propriedade verAplic.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerAplic(String value) {
this.verAplic = value;
}
/**
* Obtém o valor da propriedade cOrgao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCOrgao() {
return cOrgao;
}
/**
* Define o valor da propriedade cOrgao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCOrgao(String value) {
this.cOrgao = value;
}
/**
* Obtém o valor da propriedade cStat.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCStat() {
return cStat;
}
/**
* Define o valor da propriedade cStat.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCStat(String value) {
this.cStat = value;
}
/**
* Obtém o valor da propriedade xMotivo.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXMotivo() {
return xMotivo;
}
/**
* Define o valor da propriedade xMotivo.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXMotivo(String value) {
this.xMotivo = value;
}
/**
* Obtém o valor da propriedade chBPe.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChBPe() {
return chBPe;
}
/**
* Define o valor da propriedade chBPe.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChBPe(String value) {
this.chBPe = value;
}
/**
* Obtém o valor da propriedade tpEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpEvento() {
return tpEvento;
}
/**
* Define o valor da propriedade tpEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpEvento(String value) {
this.tpEvento = value;
}
/**
* Obtém o valor da propriedade xEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXEvento() {
return xEvento;
}
/**
* Define o valor da propriedade xEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXEvento(String value) {
this.xEvento = value;
}
/**
* Obtém o valor da propriedade nSeqEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNSeqEvento() {
return nSeqEvento;
}
/**
* Define o valor da propriedade nSeqEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNSeqEvento(String value) {
this.nSeqEvento = value;
}
/**
* Obtém o valor da propriedade dhRegEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDhRegEvento() {
return dhRegEvento;
}
/**
* Define o valor da propriedade dhRegEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDhRegEvento(String value) {
this.dhRegEvento = value;
}
/**
* Obtém o valor da propriedade nProt.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNProt() {
return nProt;
}
/**
* Define o valor da propriedade nProt.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNProt(String value) {
this.nProt = value;
}
/**
* Obtém o valor da propriedade id.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Define o valor da propriedade id.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
}
}

View File

@ -0,0 +1,98 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Classe Java de TUf.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
* <p>
* <pre>
* &lt;simpleType name="TUf">
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;enumeration value="AC"/>
* &lt;enumeration value="AL"/>
* &lt;enumeration value="AM"/>
* &lt;enumeration value="AP"/>
* &lt;enumeration value="BA"/>
* &lt;enumeration value="CE"/>
* &lt;enumeration value="DF"/>
* &lt;enumeration value="ES"/>
* &lt;enumeration value="GO"/>
* &lt;enumeration value="MA"/>
* &lt;enumeration value="MG"/>
* &lt;enumeration value="MS"/>
* &lt;enumeration value="MT"/>
* &lt;enumeration value="PA"/>
* &lt;enumeration value="PB"/>
* &lt;enumeration value="PE"/>
* &lt;enumeration value="PI"/>
* &lt;enumeration value="PR"/>
* &lt;enumeration value="RJ"/>
* &lt;enumeration value="RN"/>
* &lt;enumeration value="RO"/>
* &lt;enumeration value="RR"/>
* &lt;enumeration value="RS"/>
* &lt;enumeration value="SC"/>
* &lt;enumeration value="SE"/>
* &lt;enumeration value="SP"/>
* &lt;enumeration value="TO"/>
* &lt;enumeration value="EX"/>
* &lt;/restriction>
* &lt;/simpleType>
* </pre>
*
*/
@XmlType(name = "TUf")
@XmlEnum
public enum TUf {
AC,
AL,
AM,
AP,
BA,
CE,
DF,
ES,
GO,
MA,
MG,
MS,
MT,
PA,
PB,
PE,
PI,
PR,
RJ,
RN,
RO,
RR,
RS,
SC,
SE,
SP,
TO,
EX;
public String value() {
return name();
}
public static TUf fromValue(String v) {
return valueOf(v);
}
}

View File

@ -0,0 +1,96 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
//
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Classe Java de TUf_sem_EX.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
* <p>
* <pre>
* &lt;simpleType name="TUf_sem_EX">
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;enumeration value="AC"/>
* &lt;enumeration value="AL"/>
* &lt;enumeration value="AM"/>
* &lt;enumeration value="AP"/>
* &lt;enumeration value="BA"/>
* &lt;enumeration value="CE"/>
* &lt;enumeration value="DF"/>
* &lt;enumeration value="ES"/>
* &lt;enumeration value="GO"/>
* &lt;enumeration value="MA"/>
* &lt;enumeration value="MG"/>
* &lt;enumeration value="MS"/>
* &lt;enumeration value="MT"/>
* &lt;enumeration value="PA"/>
* &lt;enumeration value="PB"/>
* &lt;enumeration value="PE"/>
* &lt;enumeration value="PI"/>
* &lt;enumeration value="PR"/>
* &lt;enumeration value="RJ"/>
* &lt;enumeration value="RN"/>
* &lt;enumeration value="RO"/>
* &lt;enumeration value="RR"/>
* &lt;enumeration value="RS"/>
* &lt;enumeration value="SC"/>
* &lt;enumeration value="SE"/>
* &lt;enumeration value="SP"/>
* &lt;enumeration value="TO"/>
* &lt;/restriction>
* &lt;/simpleType>
* </pre>
*
*/
@XmlType(name = "TUf_sem_EX")
@XmlEnum
public enum TUfSemEX {
AC,
AL,
AM,
AP,
BA,
CE,
DF,
ES,
GO,
MA,
MG,
MS,
MT,
PA,
PB,
PE,
PI,
PR,
RJ,
RN,
RO,
RR,
RS,
SC,
SE,
SP,
TO;
public String value() {
return name();
}
public static TUfSemEX fromValue(String v) {
return valueOf(v);
}
}

View File

@ -0,0 +1,599 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.29 às 06:11:44 PM BRT
//
package br.inf.portalfiscal.bpe.evento;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3c.dom.Element;
/**
* Tipo Evento
*
* <p>Classe Java de TEvento complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TEvento">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="infEvento">
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/bpe}TCOrgaoIBGE"/>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/bpe}TCnpj"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
* &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
* &lt;element name="tpEvento">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{6}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nSeqEvento">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[1-9][0-9]|0?[1-9]"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="detEvento">
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;any processContents='skip'/>
* &lt;/sequence>
* &lt;attribute name="versaoEvento" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="1\.(0[0-9]|[1-9][0-9])"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* &lt;/element>
* &lt;/sequence>
* &lt;attribute name="Id" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID">
* &lt;pattern value="ID[0-9]{52}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* &lt;/element>
* &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature"/>
* &lt;/sequence>
* &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerEvento" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEvento", propOrder = {
"infEvento",
// "signature"
})
@XmlRootElement(name = "eventoBPe")
public class TEvento {
@XmlElement(required = true)
protected TEvento.InfEvento infEvento;
// @XmlElement(name = "Signature" required = true)
// protected SignatureType signature;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade infEvento.
*
* @return
* possible object is
* {@link TEvento.InfEvento }
*
*/
public TEvento.InfEvento getInfEvento() {
return infEvento;
}
/**
* Define o valor da propriedade infEvento.
*
* @param value
* allowed object is
* {@link TEvento.InfEvento }
*
*/
public void setInfEvento(TEvento.InfEvento value) {
this.infEvento = value;
}
/**
* Obtém o valor da propriedade signature.
*
* @return
* possible object is
* {@link SignatureType }
*
*/
// public SignatureType getSignature() {
// return signature;
// }
/**
* Define o valor da propriedade signature.
*
* @param value
* allowed object is
* {@link SignatureType }
*
*/
// public void setSignature(SignatureType value) {
// this.signature = value;
// }
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
/**
* <p>Classe Java de anonymous complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/bpe}TCOrgaoIBGE"/>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/bpe}TCnpj"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
* &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
* &lt;element name="tpEvento">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{6}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nSeqEvento">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[1-9][0-9]|0?[1-9]"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="detEvento">
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;any processContents='skip'/>
* &lt;/sequence>
* &lt;attribute name="versaoEvento" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="1\.(0[0-9]|[1-9][0-9])"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* &lt;/element>
* &lt;/sequence>
* &lt;attribute name="Id" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID">
* &lt;pattern value="ID[0-9]{52}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"cOrgao",
"tpAmb",
"cnpj",
"chBPe",
"dhEvento",
"tpEvento",
"nSeqEvento",
"detEvento"
})
public static class InfEvento {
@XmlElement(required = true)
protected String cOrgao;
@XmlElement(required = true)
protected String tpAmb;
@XmlElement(name = "CNPJ", required = true)
protected String cnpj;
@XmlElement(required = true)
protected String chBPe;
@XmlElement(required = true)
protected String dhEvento;
@XmlElement(required = true)
protected String tpEvento;
@XmlElement(required = true)
protected String nSeqEvento;
@XmlElement(required = true)
protected TEvento.InfEvento.DetEvento detEvento;
@XmlAttribute(name = "Id", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
protected String id;
/**
* Obtém o valor da propriedade cOrgao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCOrgao() {
return cOrgao;
}
/**
* Define o valor da propriedade cOrgao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCOrgao(String value) {
this.cOrgao = value;
}
/**
* Obtém o valor da propriedade tpAmb.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpAmb() {
return tpAmb;
}
/**
* Define o valor da propriedade tpAmb.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpAmb(String value) {
this.tpAmb = value;
}
/**
* Obtém o valor da propriedade cnpj.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCNPJ() {
return cnpj;
}
/**
* Define o valor da propriedade cnpj.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCNPJ(String value) {
this.cnpj = value;
}
/**
* Obtém o valor da propriedade chBPe.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChBPe() {
return chBPe;
}
/**
* Define o valor da propriedade chBPe.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChBPe(String value) {
this.chBPe = value;
}
/**
* Obtém o valor da propriedade dhEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDhEvento() {
return dhEvento;
}
/**
* Define o valor da propriedade dhEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDhEvento(String value) {
this.dhEvento = value;
}
/**
* Obtém o valor da propriedade tpEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpEvento() {
return tpEvento;
}
/**
* Define o valor da propriedade tpEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpEvento(String value) {
this.tpEvento = value;
}
/**
* Obtém o valor da propriedade nSeqEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNSeqEvento() {
return nSeqEvento;
}
/**
* Define o valor da propriedade nSeqEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNSeqEvento(String value) {
this.nSeqEvento = value;
}
/**
* Obtém o valor da propriedade detEvento.
*
* @return
* possible object is
* {@link TEvento.InfEvento.DetEvento }
*
*/
public TEvento.InfEvento.DetEvento getDetEvento() {
return detEvento;
}
/**
* Define o valor da propriedade detEvento.
*
* @param value
* allowed object is
* {@link TEvento.InfEvento.DetEvento }
*
*/
public void setDetEvento(TEvento.InfEvento.DetEvento value) {
this.detEvento = value;
}
/**
* Obtém o valor da propriedade id.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Define o valor da propriedade id.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* <p>Classe Java de anonymous complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;any processContents='skip'/>
* &lt;/sequence>
* &lt;attribute name="versaoEvento" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="1\.(0[0-9]|[1-9][0-9])"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"any"
})
public static class DetEvento {
@XmlAnyElement
protected Element any;
@XmlAttribute(name = "versaoEvento", required = true)
protected String versaoEvento;
/**
* Obtém o valor da propriedade any.
*
* @return
* possible object is
* {@link Element }
*
*/
public Element getAny() {
return any;
}
/**
* Define o valor da propriedade any.
*
* @param value
* allowed object is
* {@link Element }
*
*/
public void setAny(Element value) {
this.any = value;
}
/**
* Obtém o valor da propriedade versaoEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersaoEvento() {
return versaoEvento;
}
/**
* Define o valor da propriedade versaoEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersaoEvento(String value) {
this.versaoEvento = value;
}
}
}
}

View File

@ -0,0 +1,47 @@
package br.inf.portalfiscal.bpe.evento;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEventoMsg", propOrder = {
"eventoBPe",
"xmlns"
})
@XmlRootElement(name = "bpeDadosMsg")
public class TEventoMsg {
@XmlElement(required = true)
protected TEvento eventoBPe;
@XmlAttribute(name = "xmlns", required = true)
protected String xmlns;
public TEventoMsg() {
super();
}
public TEventoMsg(TEvento eventoBPe) {
super();
this.eventoBPe = eventoBPe;
}
public TEvento getEventoBPe() {
return eventoBPe;
}
public void setEventoBPe(TEvento eventoBPe) {
this.eventoBPe = eventoBPe;
}
public String getXmlns() {
return xmlns;
}
public void setXmlns(String xmlns) {
this.xmlns = xmlns;
}
}

View File

@ -0,0 +1,568 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.29 às 06:11:44 PM BRT
//
package br.inf.portalfiscal.bpe.evento;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Tipo retorno do Evento
*
* <p>Classe Java de TRetEvento complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType name="TRetEvento">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="infEvento">
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
* &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/bpe}TCOrgaoIBGE"/>
* &lt;element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
* &lt;element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe" minOccurs="0"/>
* &lt;element name="tpEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{6}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;minLength value="4"/>
* &lt;maxLength value="60"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nSeqEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[1-9][0-9]|0?[1-9]"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="dhRegEvento" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC" minOccurs="0"/>
* &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="Id">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID">
* &lt;pattern value="ID[0-9]{15}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* &lt;/element>
* &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="versao" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TVerEvento">
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TRetEvento", propOrder = {
"infEvento",
// "signature"
})
public class TRetEvento {
@XmlElement(name = "infEvento", required = true)
protected TRetEvento.InfEvento infEvento;
// @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
// protected SignatureType signature;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade infEvento.
*
* @return
* possible object is
* {@link TRetEvento.InfEvento }
*
*/
public TRetEvento.InfEvento getInfEvento() {
return infEvento;
}
/**
* Define o valor da propriedade infEvento.
*
* @param value
* allowed object is
* {@link TRetEvento.InfEvento }
*
*/
public void setInfEvento(TRetEvento.InfEvento value) {
this.infEvento = value;
}
/**
* Obtém o valor da propriedade signature.
*
* @return
* possible object is
* {@link SignatureType }
*
*/
// public SignatureType getSignature() {
// return signature;
// }
/**
* Define o valor da propriedade signature.
*
* @param value
* allowed object is
* {@link SignatureType }
*
*/
// public void setSignature(SignatureType value) {
// this.signature = value;
// }
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
/**
* <p>Classe Java de anonymous complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
* &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
* &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/bpe}TCOrgaoIBGE"/>
* &lt;element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
* &lt;element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
* &lt;element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe" minOccurs="0"/>
* &lt;element name="tpEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[0-9]{6}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="xEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
* &lt;minLength value="4"/>
* &lt;maxLength value="60"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="nSeqEvento" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;whiteSpace value="preserve"/>
* &lt;pattern value="[1-9][0-9]|0?[1-9]"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="dhRegEvento" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC" minOccurs="0"/>
* &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="Id">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID">
* &lt;pattern value="ID[0-9]{15}"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InfEvento", propOrder = {
"tpAmb",
"verAplic",
"cOrgao",
"cStat",
"xMotivo",
"chBPe",
"tpEvento",
"xEvento",
"nSeqEvento",
"dhRegEvento",
"nProt"
})
public static class InfEvento {
@XmlElement(name = "tpAmb", required = true)
protected String tpAmb;
@XmlElement(required = true)
protected String verAplic;
@XmlElement(required = true)
protected String cOrgao;
@XmlElement(name = "cStat", required = true)
protected String cStat;
@XmlElement(name = "xMotivo", required = true)
protected String xMotivo;
protected String chBPe;
protected String tpEvento;
protected String xEvento;
protected String nSeqEvento;
protected String dhRegEvento;
protected String nProt;
@XmlAttribute(name = "Id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
protected String id;
/**
* Obtém o valor da propriedade tpAmb.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpAmb() {
return tpAmb;
}
/**
* Define o valor da propriedade tpAmb.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpAmb(String value) {
this.tpAmb = value;
}
/**
* Obtém o valor da propriedade verAplic.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerAplic() {
return verAplic;
}
/**
* Define o valor da propriedade verAplic.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerAplic(String value) {
this.verAplic = value;
}
/**
* Obtém o valor da propriedade cOrgao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCOrgao() {
return cOrgao;
}
/**
* Define o valor da propriedade cOrgao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCOrgao(String value) {
this.cOrgao = value;
}
/**
* Obtém o valor da propriedade cStat.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCStat() {
return cStat;
}
/**
* Define o valor da propriedade cStat.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCStat(String value) {
this.cStat = value;
}
/**
* Obtém o valor da propriedade xMotivo.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXMotivo() {
return xMotivo;
}
/**
* Define o valor da propriedade xMotivo.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXMotivo(String value) {
this.xMotivo = value;
}
/**
* Obtém o valor da propriedade chBPe.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChBPe() {
return chBPe;
}
/**
* Define o valor da propriedade chBPe.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChBPe(String value) {
this.chBPe = value;
}
/**
* Obtém o valor da propriedade tpEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpEvento() {
return tpEvento;
}
/**
* Define o valor da propriedade tpEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpEvento(String value) {
this.tpEvento = value;
}
/**
* Obtém o valor da propriedade xEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXEvento() {
return xEvento;
}
/**
* Define o valor da propriedade xEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXEvento(String value) {
this.xEvento = value;
}
/**
* Obtém o valor da propriedade nSeqEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNSeqEvento() {
return nSeqEvento;
}
/**
* Define o valor da propriedade nSeqEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNSeqEvento(String value) {
this.nSeqEvento = value;
}
/**
* Obtém o valor da propriedade dhRegEvento.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDhRegEvento() {
return dhRegEvento;
}
/**
* Define o valor da propriedade dhRegEvento.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDhRegEvento(String value) {
this.dhRegEvento = value;
}
/**
* Obtém o valor da propriedade nProt.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNProt() {
return nProt;
}
/**
* Define o valor da propriedade nProt.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNProt(String value) {
this.nProt = value;
}
/**
* Obtém o valor da propriedade id.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Define o valor da propriedade id.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
}
}

View File

@ -0,0 +1 @@
package br.inf.portalfiscal.bpe.evento;

View File

@ -0,0 +1,23 @@
//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.08.23 às 03:05:57 PM BRT
//
//@XmlSchema(
// namespace="",
// // If qualified namespace will be added to all elements
// elementFormDefault = XmlNsForm.QUALIFIED,
// // If qualifies namespace will be added to all attributes
// attributeFormDefault = XmlNsForm.UNQUALIFIED,
// xmlns = {
// @XmlNs(prefix = "bpe", namespaceURI = "http://www.portalfiscal.inf.br/bpe"),
//// @XmlNs(prefix = "xsi", namespaceURI = "http://www.portalfiscal.inf.br/bpe"),
// }
//)
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.portalfiscal.inf.br/bpe", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package br.inf.portalfiscal.bpe;
import javax.xml.bind.annotation.XmlNs;
import javax.xml.bind.annotation.XmlNsForm;
import javax.xml.bind.annotation.XmlSchema;

View File

@ -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<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoWS>
*/
@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<ExportaIntegracaoWS> 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<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoWS>
*/
@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<ExportaIntegracaoWS> 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<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadBilheteiroWS>
*/
@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<ExportaIntegracaoCadBilheteiroWS> 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<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadEstadoWS>
*/
@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<ExportaIntegracaoCadEstadoWS> cadEstado(
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
Integer codEmpresaGrupo);
/**
*
* @param codEmpresaGrupo
* @return
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadClienteWS>
*/
@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<ExportaIntegracaoCadClienteWS> cadCliente(
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
Integer codEmpresaGrupo);
/**
*
* @param codEmpresaGrupo
* @return
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadLocalidadeWS>
*/
@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<ExportaIntegracaoCadLocalidadeWS> cadLocalidade(
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
Integer codEmpresaGrupo);
/**
*
* @param codEmpresaGrupo
* @return
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadFormaPagamentoWS>
*/
@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<ExportaIntegracaoCadFormaPagamentoWS> cadFormaPagamento(
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
Integer codEmpresaGrupo);
/**
*
* @param codEmpresaGrupo
* @param codEmpresa
* @return
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadLinhaWS>
*/
@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<ExportaIntegracaoCadLinhaWS> cadLinha(
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
Integer codEmpresaGrupo,
@WebParam(name = "codEmpresa", targetNamespace = "")
String codEmpresa);
/**
*
* @param codEmpresaGrupo
* @param codEmpresa
* @return
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadBeneficioWS>
*/
@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<ExportaIntegracaoCadBeneficioWS> cadBeneficio(
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
Integer codEmpresaGrupo,
@WebParam(name = "codEmpresa", targetNamespace = "")
String codEmpresa);
/**
*
* @param codEmpresaGrupo
* @return
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadReceitaDespesaWS>
*/
@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<ExportaIntegracaoCadReceitaDespesaWS> cadReceitaDespesa(
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
Integer codEmpresaGrupo);
/**
*
* @param codEmpresaGrupo
* @return
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadAgenciaWS>
*/
@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<ExportaIntegracaoCadAgenciaWS> cadAgencia(
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
Integer codEmpresaGrupo);
/**
*
* @param dataFim
* @param codEmpresaGrupo
* @param agenciaInicio
* @param dataInicio
* @param codEmpresa
* @param agenciaFim
* @return
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoReceitaDespesaWS>
*/
@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<ExportaIntegracaoReceitaDespesaWS> 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);
}

View File

@ -0,0 +1,55 @@
package com.rjconsultores.hstcajservice.ws;
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 Logger logger = Logger.getLogger(com.rjconsultores.hstcajservice.ws.BilheteServiceService.class.getName());
public BilheteServiceService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
/**
*
* @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 <code>features</code> 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);
}
}

View File

@ -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<ExportaIntegracaoWS> bilhetes = null;
public List<ExportaIntegracaoWS> getBilhete() {
return bilhetes;
}
public void setBilhetes(List<ExportaIntegracaoWS> bilhete) {
this.bilhetes = bilhete;
}
}

View File

@ -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;
/**
* <p>Java class for buscarBilhetes complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="buscarBilhetes">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="fiscal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for buscarBilhetesInconsistente complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="buscarBilhetesInconsistente">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="fiscal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for buscarBilhetesInconsistenteResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="buscarBilhetesInconsistenteResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "buscarBilhetesInconsistenteResponse", propOrder = {
"_return"
})
public class BuscarBilhetesInconsistenteResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoWS }
*
*
*/
public List<ExportaIntegracaoWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for buscarBilhetesResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="buscarBilhetesResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "buscarBilhetesResponse", propOrder = {
"_return"
})
public class BuscarBilhetesResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoWS }
*
*
*/
public List<ExportaIntegracaoWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for buscarReceitaDespesa complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="buscarReceitaDespesa">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for buscarReceitaDespesaResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="buscarReceitaDespesaResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoReceitaDespesaWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "buscarReceitaDespesaResponse", propOrder = {
"_return"
})
public class BuscarReceitaDespesaResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoReceitaDespesaWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoReceitaDespesaWS }
*
*
*/
public List<ExportaIntegracaoReceitaDespesaWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoReceitaDespesaWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for cadAgencia complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadAgencia">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for cadAgenciaResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadAgenciaResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadAgenciaWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cadAgenciaResponse", propOrder = {
"_return"
})
public class CadAgenciaResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoCadAgenciaWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoCadAgenciaWS }
*
*
*/
public List<ExportaIntegracaoCadAgenciaWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoCadAgenciaWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for cadBeneficio complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadBeneficio">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for cadBeneficioResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadBeneficioResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadBeneficioWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cadBeneficioResponse", propOrder = {
"_return"
})
public class CadBeneficioResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoCadBeneficioWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoCadBeneficioWS }
*
*
*/
public List<ExportaIntegracaoCadBeneficioWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoCadBeneficioWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for cadBilheteiro complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadBilheteiro">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for cadBilheteiroResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadBilheteiroResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadBilheteiroWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cadBilheteiroResponse", propOrder = {
"_return"
})
public class CadBilheteiroResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoCadBilheteiroWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoCadBilheteiroWS }
*
*
*/
public List<ExportaIntegracaoCadBilheteiroWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoCadBilheteiroWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for cadCliente complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadCliente">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for cadClienteResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadClienteResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadClienteWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cadClienteResponse", propOrder = {
"_return"
})
public class CadClienteResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoCadClienteWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoCadClienteWS }
*
*
*/
public List<ExportaIntegracaoCadClienteWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoCadClienteWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for cadEstado complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadEstado">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for cadEstadoResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadEstadoResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadEstadoWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cadEstadoResponse", propOrder = {
"_return"
})
public class CadEstadoResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoCadEstadoWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoCadEstadoWS }
*
*
*/
public List<ExportaIntegracaoCadEstadoWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoCadEstadoWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for cadFormaPagamento complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadFormaPagamento">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for cadFormaPagamentoResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadFormaPagamentoResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadFormaPagamentoWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cadFormaPagamentoResponse", propOrder = {
"_return"
})
public class CadFormaPagamentoResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoCadFormaPagamentoWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoCadFormaPagamentoWS }
*
*
*/
public List<ExportaIntegracaoCadFormaPagamentoWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoCadFormaPagamentoWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for cadLinha complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadLinha">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for cadLinhaResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadLinhaResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadLinhaWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cadLinhaResponse", propOrder = {
"_return"
})
public class CadLinhaResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoCadLinhaWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoCadLinhaWS }
*
*
*/
public List<ExportaIntegracaoCadLinhaWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoCadLinhaWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for cadLocalidade complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadLocalidade">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for cadLocalidadeResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadLocalidadeResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadLocalidadeWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cadLocalidadeResponse", propOrder = {
"_return"
})
public class CadLocalidadeResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoCadLocalidadeWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoCadLocalidadeWS }
*
*
*/
public List<ExportaIntegracaoCadLocalidadeWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoCadLocalidadeWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for cadReceitaDespesa complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadReceitaDespesa">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for cadReceitaDespesaResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="cadReceitaDespesaResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadReceitaDespesaWS" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cadReceitaDespesaResponse", propOrder = {
"_return"
})
public class CadReceitaDespesaResponse {
@XmlElement(name = "return")
protected List<ExportaIntegracaoCadReceitaDespesaWS> _return;
/**
* Gets the value of the return property.
*
* <p>
* 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 <CODE>set</CODE> method for the return property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getReturn().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ExportaIntegracaoCadReceitaDespesaWS }
*
*
*/
public List<ExportaIntegracaoCadReceitaDespesaWS> getReturn() {
if (_return == null) {
_return = new ArrayList<ExportaIntegracaoCadReceitaDespesaWS>();
}
return this._return;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoCadAgenciaWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoCadAgenciaWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="ativo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codAgencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="descAgencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoCadBeneficioWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoCadBeneficioWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="classeBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="descontoBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="descricaoBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="empresaBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="linhaBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="orgConcedLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="temTaxaEmbarque" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="temTaxaSeguro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoCadBilheteiroWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoCadBilheteiroWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="agenciaBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ativo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="documentoBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="nomeBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoCadClienteWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoCadClienteWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="bairroCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="cepCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="dataNascCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="emailCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="nacioCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="nomeCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="numDocCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ruaCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="telCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="tipoDocCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoCadEstadoWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoCadEstadoWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codServidorEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="descEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="siglaEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="taxaEmbarqueEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="valorICMSEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoCadFormaPagamentoWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoCadFormaPagamentoWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codFormaPag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="descFormaPag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoCadLinhaWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoCadLinhaWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="classeLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codEmpresaLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="descLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="detalheLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="orgConcedLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="prefixoLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoCadLocalidadeWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoCadLocalidadeWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codEstadoLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="descLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="siglaLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="taxaRodoviariaLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoCadReceitaDespesaWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoCadReceitaDespesaWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="codAgenciaReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codEmpresaReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="credDebitoReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="descReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="formaPagReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>Java class for exportaIntegracaoReceitaDespesaWS complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="exportaIntegracaoReceitaDespesaWS">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="agencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codFilial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="codReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="dataLancamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="dataMovimento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="idReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="turno" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="usuario" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="valorLancamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -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.
* <p>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<CadReceitaDespesa> createCadReceitaDespesa(CadReceitaDespesa value) {
return new JAXBElement<CadReceitaDespesa>(_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<BuscarReceitaDespesaResponse> createBuscarReceitaDespesaResponse(BuscarReceitaDespesaResponse value) {
return new JAXBElement<BuscarReceitaDespesaResponse>(_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<CadEstadoResponse> createCadEstadoResponse(CadEstadoResponse value) {
return new JAXBElement<CadEstadoResponse>(_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<CadLocalidadeResponse> createCadLocalidadeResponse(CadLocalidadeResponse value) {
return new JAXBElement<CadLocalidadeResponse>(_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<CadCliente> createCadCliente(CadCliente value) {
return new JAXBElement<CadCliente>(_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<CadEstado> createCadEstado(CadEstado value) {
return new JAXBElement<CadEstado>(_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<BuscarBilhetes> createBuscarBilhetes(BuscarBilhetes value) {
return new JAXBElement<BuscarBilhetes>(_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<CadLinha> createCadLinha(CadLinha value) {
return new JAXBElement<CadLinha>(_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<CadBeneficioResponse> createCadBeneficioResponse(CadBeneficioResponse value) {
return new JAXBElement<CadBeneficioResponse>(_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<CadAgenciaResponse> createCadAgenciaResponse(CadAgenciaResponse value) {
return new JAXBElement<CadAgenciaResponse>(_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<CadLinhaResponse> createCadLinhaResponse(CadLinhaResponse value) {
return new JAXBElement<CadLinhaResponse>(_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<BuscarBilhetesInconsistente> createBuscarBilhetesInconsistente(BuscarBilhetesInconsistente value) {
return new JAXBElement<BuscarBilhetesInconsistente>(_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<CadReceitaDespesaResponse> createCadReceitaDespesaResponse(CadReceitaDespesaResponse value) {
return new JAXBElement<CadReceitaDespesaResponse>(_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<CadBilheteiroResponse> createCadBilheteiroResponse(CadBilheteiroResponse value) {
return new JAXBElement<CadBilheteiroResponse>(_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<CadFormaPagamento> createCadFormaPagamento(CadFormaPagamento value) {
return new JAXBElement<CadFormaPagamento>(_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<CadFormaPagamentoResponse> createCadFormaPagamentoResponse(CadFormaPagamentoResponse value) {
return new JAXBElement<CadFormaPagamentoResponse>(_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<CadClienteResponse> createCadClienteResponse(CadClienteResponse value) {
return new JAXBElement<CadClienteResponse>(_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<BuscarBilhetesInconsistenteResponse> createBuscarBilhetesInconsistenteResponse(BuscarBilhetesInconsistenteResponse value) {
return new JAXBElement<BuscarBilhetesInconsistenteResponse>(_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<BuscarBilhetesResponse> createBuscarBilhetesResponse(BuscarBilhetesResponse value) {
return new JAXBElement<BuscarBilhetesResponse>(_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<BuscarReceitaDespesa> createBuscarReceitaDespesa(BuscarReceitaDespesa value) {
return new JAXBElement<BuscarReceitaDespesa>(_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<CadBilheteiro> createCadBilheteiro(CadBilheteiro value) {
return new JAXBElement<CadBilheteiro>(_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<CadBeneficio> createCadBeneficio(CadBeneficio value) {
return new JAXBElement<CadBeneficio>(_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<CadLocalidade> createCadLocalidade(CadLocalidade value) {
return new JAXBElement<CadLocalidade>(_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<CadAgencia> createCadAgencia(CadAgencia value) {
return new JAXBElement<CadAgencia>(_CadAgencia_QNAME, CadAgencia.class, null, value);
}
}

View File

@ -0,0 +1,18 @@
package com.rjconsultores.routing;
public class DynamicDataSourceHolder {
private static ThreadLocal<String> routeKey = new ThreadLocal<String>();
public static String getRouteKey() {
String key = routeKey.get();
return key;
}
public static void setRouteKey(String key) {
routeKey.set(key);
}
public static void removeRouteKey() {
routeKey.remove();
}
}

View File

@ -0,0 +1,10 @@
package com.rjconsultores.routing;
import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;
public class MultipleDataSource extends AbstractRoutingDataSource {
@Override
protected Object determineCurrentLookupKey() {
return DynamicDataSourceHolder.getRouteKey();
}
}

View File

@ -0,0 +1,12 @@
package com.rjconsultores.routing;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface ReadOnlyConnection {
}

View File

@ -0,0 +1,39 @@
package com.rjconsultores.routing;
import org.apache.log4j.Logger;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
import com.rjconsultores.ventaboletos.utilerias.ApplicationProperties;
@Aspect
@Component
@Order(0)
public class ReadOnlyRouteInterceptor {
private static Logger log = Logger.getLogger(ReadOnlyRouteInterceptor.class);
@Around("@annotation(readOnlyConnection)")
public Object proceed(ProceedingJoinPoint proceedingJoinPoint, ReadOnlyConnection readOnlyConnection) throws Throwable {
if (ApplicationProperties.getInstance().getReadOnlyConnection()) {
try {
String className = proceedingJoinPoint.getSignature().getDeclaringTypeName();
String methodName = proceedingJoinPoint.getSignature().getName();
log.debug("*** READ *** [" + className + "." + methodName + "()");
} catch (Exception e) {}
try {
DynamicDataSourceHolder.setRouteKey("dataSourceRead");
return proceedingJoinPoint.proceed();
} finally {
DynamicDataSourceHolder.removeRouteKey();
}
} else {
return proceedingJoinPoint.proceed();
}
}
}

View File

@ -0,0 +1,233 @@
package com.rjconsultores.ventaboletos.auditoria;
import java.lang.reflect.Field;
import java.lang.reflect.Type;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.ManyToOne;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;
import com.rjconsultores.ventaboletos.entidad.AuditService;
public class AuditControl {
private String currentActionService;
private Boolean checkModuleAudit;
private AuditService currentService;
private Boolean auditar;
private static Gson gson;
private static SimpleDateFormat sdf;
AuditControl(String currentActionService) {
this.currentActionService = currentActionService;
}
public static String toJson(Object object) throws IllegalArgumentException, IllegalAccessException, ParseException {
SimpleDateFormat sdf = new SimpleDateFormat();
sdf.applyPattern("dd/MM/yyyy hh:mm:ss");
StringBuilder json = new StringBuilder();
json.append("{");
List<Object> lsClazz = new ArrayList<Object>();
List<String> lsFieldName = new ArrayList<String>();
if (object != null){
for (Field field : object.getClass().getDeclaredFields()) {
if ((!field.isAnnotationPresent(Column.class) && !field.isAnnotationPresent(Id.class) &&
!field.isAnnotationPresent(ManyToOne.class)) || field.getType().getSimpleName().equalsIgnoreCase("byte[]")) {
continue;
}
if (!field.isAnnotationPresent(ManyToOne.class)) {
if (json.length() > 1) {
json.append(",");
}
json.append("\"".concat(field.getName().concat("\":")));
} else {
lsFieldName.add("\"".concat(field.getName().concat("\":")));
}
field.setAccessible(true);
if (field.getType().getName().contains("String") || field.getType().getName().contains("Date")) {
json.append("\"");
Date date = null;
if (field.getType().getName().equals("java.util.Date")) {
date = (java.util.Date) field.get(object);
json.append(date == null ? "null" : sdf.format(date));
} else if (field.getType().getName().equals("java.sql.Date")) {
date = (Date) field.get(object);
json.append(date == null ? "null" : sdf.format(date));
} else if (field.getType().getName().contains("String")) {
json.append((String) field.get(object));
}
json.append("\"");
continue;
}
if (field.isAnnotationPresent(ManyToOne.class)) {
lsClazz.add(field.get(object));
continue;
}
json.append(field.get(object) == null ? "null" : field.get(object).toString());
}
}
for (int i = 0; i < lsClazz.size(); i++) {
json.append(",");
json.append(lsFieldName.get(i));
json.append(AuditControl.toJson(lsClazz.get(i)));
}
json.append("}");
return json.toString();
}
public static Gson getGson() {
if (AuditControl.gson == null) {
GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.registerTypeAdapter(Date.class, new JsonDeserializer<Date>() {
DateFormat df = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss");
public Date deserialize(final JsonElement json, final Type typeOfT, final JsonDeserializationContext context)
throws JsonParseException {
try {
return df.parse(json.getAsString());
} catch (ParseException e) {
return null;
}
}
});
gson = gsonBuilder.create();
}
return gson;
}
public static String formatJson(Object clazz, boolean mainClass) throws IllegalArgumentException, IllegalAccessException {
String init = "{";
String fim = "}";
String tab = "\t";
String ql = "\r";
String ret = init.concat(ql).concat(tab);
List<Object> lsClazz = new ArrayList<Object>();
List<String> lsNameFd = new ArrayList<String>();
if (clazz != null){
for (Field field : clazz.getClass().getDeclaredFields()) {
if (!field.isAnnotationPresent(Column.class) && !field.isAnnotationPresent(Id.class) &&
!field.isAnnotationPresent(ManyToOne.class)) {
continue;
}
field.setAccessible(true);
if (field.isAnnotationPresent(ManyToOne.class) && field.get(clazz) != null) {
lsNameFd.add(field.getName());
lsClazz.add(field.get(clazz));
continue;
}
if (!mainClass) {
ret += tab;
}
ret += field.getName().concat(":");
String fieldValue = null;
if (field.getType().getSimpleName().equalsIgnoreCase("date") && field.get(clazz) != null) {
fieldValue = AuditControl.convertDateObjectToString(field.get(clazz));
} else {
fieldValue = (field.get(clazz) == null ? "null" : field.get(clazz)).toString();
}
ret += fieldValue;
ret += ql.concat(tab);
}
for (int i = 0; i < lsClazz.size(); i++) {
ret += lsNameFd.get(i).concat(tab.concat(":").concat(tab));
ret += formatJson(lsClazz.get(i), false);
}
if (mainClass) {
ret += ql.concat(fim);
} else {
ret += ql.concat(tab.concat(fim).concat(",").concat(ql).concat(tab));
}
}
return ret;
}
public static String convertDateObjectToString(Object dateObject) throws RuntimeException {
if (sdf == null) {
sdf = new SimpleDateFormat();
sdf.applyPattern("dd/MM/yyyy hh:mm:ss");
}
if (dateObject.getClass().getName().contains("util")) {
Date date = (Date) dateObject;
return sdf.format(date);
}
if (dateObject.getClass().getName().contains("sql")) {
java.sql.Date date = (java.sql.Date) dateObject;
return sdf.format(new Date(date.getTime()));
}
throw new RuntimeException("Não foi possível realizar a conversão de data.\rClass: " + AuditControl.class.getName());
}
public String getCurrentActionService() {
return currentActionService;
}
public AuditService getCurrentService() {
return currentService;
}
public void setCurrentService(AuditService currentService) {
this.currentService = currentService;
}
public Boolean getCheckModuleAudit() {
return checkModuleAudit;
}
public void setCheckModuleAudit(Boolean checkModuleAudit) {
this.checkModuleAudit = checkModuleAudit;
}
public Boolean getAuditar() {
return auditar;
}
public void setAuditar(Boolean auditar) {
this.auditar = auditar;
}
}

View File

@ -0,0 +1,14 @@
package com.rjconsultores.ventaboletos.auditoria;
public class AuditManager {
private static AuditControl INSTANCE;
public static AuditControl getINSTANCE(String currentActionService) {
INSTANCE = new AuditControl(currentActionService);
return INSTANCE;
}
public static AuditControl getINSTANCE() {
return INSTANCE;
}
}

View File

@ -0,0 +1,184 @@
package com.rjconsultores.ventaboletos.auditoria.interceptor;
import java.io.Serializable;
import java.sql.Date;
import org.apache.log4j.Logger;
import org.hibernate.Criteria;
import org.hibernate.EmptyInterceptor;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Restrictions;
import org.hibernate.type.Type;
import com.rjconsultores.ventaboletos.auditoria.AuditControl;
import com.rjconsultores.ventaboletos.auditoria.AuditManager;
import com.rjconsultores.ventaboletos.dao.util.DBUtil;
import com.rjconsultores.ventaboletos.entidad.AuditLog;
import com.rjconsultores.ventaboletos.entidad.AuditService;
import com.rjconsultores.ventaboletos.entidad.Constante;
import com.rjconsultores.ventaboletos.entidad.FuncionSistema;
import com.rjconsultores.ventaboletos.entidad.Sistema;
import com.rjconsultores.ventaboletos.entidad.Usuario;
import com.rjconsultores.ventaboletos.enums.auditoria.EnumAuditAction;
import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado;
public class AuditInterceptor extends EmptyInterceptor {
private static final long serialVersionUID = 1L;
private static Logger log = Logger.getLogger(AuditInterceptor.class);
// Considera que o ADM sempre tenha o ID igual a 1
private Integer SISTEMA_ID = 1;
@Override
public boolean onSave(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) {
final SessionFactory sessionFactory = DBUtil.getInstance().getSessionFactory();
final Session session = sessionFactory.openSession();
try {
genAudit(session, entity, EnumAuditAction.CRIACAO);
} catch (Exception exception) {
log.error(exception.getMessage(), exception);
}
if (session != null) {
session.close();
}
return super.onSave(entity, id, state, propertyNames, types);
}
@Override
public boolean onFlushDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) {
final SessionFactory sessionFactory = DBUtil.getInstance().getSessionFactory();
final Session session = sessionFactory.openSession();
try {
genAudit(session, entity, EnumAuditAction.ALTERACAO);
} catch (Exception exception) {
log.error(exception.getMessage(), exception);
}
if (session != null) {
session.close();
}
return super.onFlushDirty(entity, id, currentState, previousState, propertyNames, types);
}
@Override
public void onDelete(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) {
final SessionFactory sessionFactory = DBUtil.getInstance().getSessionFactory();
final Session session = sessionFactory.openSession();
try {
genAudit(session, entity, EnumAuditAction.EXCLUSAO);
} catch (Exception exception) {
log.error(exception.getMessage(), exception);
}
if (session != null) {
session.close();
}
super.onDelete(entity, id, state, propertyNames, types);
}
private void genAudit(final Session session, Object entity, EnumAuditAction action) {
if (!getAuditModuleService(session)) {
return;
}
try {
/**
* Ignorado caso a entidade for de auditoria e se não for encontrado o módulo no banco
*/
if (!(entity instanceof AuditLog)) {
AuditService service = AuditManager.getINSTANCE().getCurrentService();
if (!(entity instanceof AuditLog) && service != null && service.getModule() != null) {
/**
* A auditoria não será realizada nos seguintes cenários: 1) Não for encontrado o serviço no banco de dados 2) O serviço for encontrado, porém não está habilitado para auditoria
*/
if (service.getModule().getIndAuditable()) {
AuditLog audit = new AuditLog();
audit.setCreatedDate(new Date(System.currentTimeMillis()));
audit.setEntityName(entity.getClass().getSimpleName());
audit.setService(service);
audit.setEntityDetail(AuditControl.toJson(entity));
Sistema sistema = new Sistema();
sistema.setSistemaId(SISTEMA_ID);
audit.setSistema(sistema);
audit.setAction(action.getId());
audit.setUsuario(UsuarioLogado.getUsuarioLogado() != null ? UsuarioLogado.getUsuarioLogado() : new Usuario(1));
session.persist(audit);
session.flush();
}
}
}
} catch (Exception exception) {
log.error(exception.getMessage(), exception);
}
}
private boolean getAuditModuleService(final Session session) {
if (AuditManager.getINSTANCE() != null && AuditManager.getINSTANCE().getAuditar() == null) {
Criteria criteriaAuditar = session.createCriteria(Constante.class);
criteriaAuditar.add(Restrictions.eq("nombconstante", "AUDITAR_SISTEMA"));
criteriaAuditar.add(Restrictions.eq("activo", Boolean.TRUE));
Constante constante = (Constante) criteriaAuditar.uniqueResult();
Boolean auditar = Boolean.FALSE;
if (constante != null) {
try {
auditar = Boolean.valueOf(constante.getValorconstante());
} catch (Exception e) {
log.error(e.getMessage(), e);
}
}
AuditManager.getINSTANCE().setAuditar(auditar);
}
if (AuditManager.getINSTANCE() == null || AuditManager.getINSTANCE().getAuditar() == null || !AuditManager.getINSTANCE().getAuditar()) {
return false;
}
if (!AuditManager.getINSTANCE().getCheckModuleAudit()) {
return AuditManager.getINSTANCE().getCurrentService() != null ? true : false;
}
AuditService auditService = null;
Criteria criteriaFuncionSistema = session.createCriteria(FuncionSistema.class);
criteriaFuncionSistema.add(Restrictions.eq("descruta", AuditManager.getINSTANCE().getCurrentActionService()));
FuncionSistema funcionSistema = (FuncionSistema) criteriaFuncionSistema.uniqueResult();
if (funcionSistema == null) {
log.info("Função sistema " + funcionSistema + " não encontrada na base de dados.");
AuditManager.getINSTANCE().setCurrentService(auditService);
return false;
}
Criteria criteriaService = session.createCriteria(AuditService.class);
criteriaService.add(Restrictions.eq("funcionSistema", funcionSistema));
auditService = (AuditService) criteriaService.uniqueResult();
if (auditService == null) {
return false;
}
AuditManager.getINSTANCE().setCurrentService(auditService);
AuditManager.getINSTANCE().setCheckModuleAudit(Boolean.FALSE);
return true;
}
}

View File

@ -0,0 +1,138 @@
package com.rjconsultores.ventaboletos.constantes;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Constantes {
public static final Long FORMA_PAGO_DINHEIRO = new Long(1);
public static final Long FORMA_PAGO_RESERVA = new Long(94);
public static final Long FORMA_PAGO_NOTA_CREDITO = new Long(93);
public static final Long FORMA_PAGO_CREDITO = new Long(2);
public static final Long FORMA_PAGO_DEBITO = new Long(3);
public static final Long FORMA_PAGO_GERACAO_OCD = new Long(35);
public static final Long FORMA_PAGO_TROCA_PASSAGEM = new Long(10);
public static final Long FORMA_PAGO_ORDEN_SERVICIO = new Long(11);
public static final Long MVO_CANCEL_CANCELACION = new Long(31);
public static final Long MVO_CANCEL_DEVOLUCAO = new Long(32);
public static final Long MVO_CANCEL_DEVOLUCAO_CONTIGENCIA_50 = new Long(36);
public static final Long MVO_CANCEL_DEVOLUCAO_CONTIGENCIA_100 = new Long(37);
public static final Long MVO_CANCEL_TROCA = new Long(10);
public static final Long MVO_CANCEL_CHECKIN = new Long(27);
public static final Long MVO_CANCEL_TRANSFERENCIA = new Long(23);
public static final Long MVO_CANCEL_BOLETO_ENTREGADO = new Long(16);
public static final Long MVO_CANCEL_BOLETO_AGRUPAMENTO = new Long(17);
public static final Long MVO_CANCEL_GERACAO_OCD = new Long(99);
public static final Long MVO_CANCEL_QUITACAO_OCD = new Long(35);
public static final Long MVO_CANCEL_VENDA_PACOTE = new Long(33);
public static final Long ORGAO_CONCEDENTE_ID_AGERBA = new Long(27);
public static Long TPV_DIRECTO_NORMAL = new Long(1);
public static Long TPV_MANUAL = new Long(3);
public static Long TPV_CALL_CENTER = new Long(5);
public static Long TPV_BOLETO_REMOTO = new Long(18);
public static Long TPV_TRANSFERENCIAS = new Long(8); // é a troca de passagens
public static Long TPV_CAMBIO_VIAJE = new Long(81); // é a transferência de passagens
public static Long TPV_CHECKIN_VIAGEM = new Long(41); // chekin boletos
public static Long TPV_BOLETO_ABIERTO = new Long(9);
public static Long TPV_CONFIRMA_ABIERTO = new Long(82);
public static Long TPV_VENDA_BOLETO_ABERTO_MANUAL = new Long(39);
public static Long TPV_RESERVACION_POR_INTERNET = new Long(16);
public static Long TPV_POR_INTERNET = new Long(12);
public static Long TPV_AGENCIA_WEB = new Long(19);
public static final Integer TIPO_OPERACION_CC_LQ = new Integer(1);
public static final Integer TIPO_OPERACION_CC_PAGO = new Integer(2);
public static Short TURNO_AUTOMATICO = new Short("99");
public static final String IMAGEM_EMPRESA = "EMPRESA_BACKGROUND";
public static final String IMAGEM_EMPRESA_GENERICA = "EMPRESA_BACKGROUND_GENERICA";
public static final String ORGAO_CONCEDENTE_STRING_AGERBA = "AGERBA";
public static List<Integer> ORGAOS_CONCEDENTES_CALCULO_ARTESP = new ArrayList<Integer>(Arrays.asList(new Integer[]{21})) ;
/*
3 ANTT
4 AGEPAN
2 DER/PR
6 DER/MG
9 DER/RJ
15 DER/SC
16 DER/GO
22 DETRO/RJ
10 DER/ES
25 Pref de Ibatiba
26 Pref de João Neiva
27 AGERBA
28 DER/RO
30 DETER
*/
public static List<Integer> ORGAOS_CONCEDENTES_CALCULO_ANTT = new ArrayList<Integer>(Arrays.asList(new Integer[]{2,3,4,6,9,15,16,22,10,25,26,27,28,29,30}));
/*
* 5 - DER/MT
* 23 - Pref.Marilia
*
*/
public static List<Integer> ORGAOS_CONCEDENTES_CALCULO_AGER = new ArrayList<Integer>(Arrays.asList(new Integer[]{5,23}));
public static final String UTF_8 = "UTF-8";
public static final String CHARSET_UTF8 = ";charset=utf-8";
public static final int INTERVALO_FECHAMENTO_DIARIO = 1;
public static final int INTERVALO_FECHAMENTO_SEMANAL = 7;
public static final int INTERVALO_FECHAMENTO_DECENDIAL = 10;
public static final int INTERVALO_FECHAMENTO_QUINZENAL = 15;
public static final int INTERVALO_FECHAMENTO_MENSAL = 30;
public static final int LIMITE_EVENTO_EXTRA_EDITAVEL = 99000;//TipoEventoExtra com id >= 99000 não são editáveis.
public static final String DESCONTO_COMPONENTE_PRECO = "DESCONTO_COMPONENTE_PRECO";
public static final String TEMPO_LIMITE_PEN_PARAM_OCD = "TEMPO_LIMITE_PEN_PARAM_OCD";
public static final String CVESISTEMA_MOTIVO_CANCELAMENTO_ECF = "CANCELAMENTO_ECF";
public static final String QTDE_MAX_DIAS_RETENCAO_DIARIA_COMISSAO = "QTDE_MAX_DIAS_RETENCAO_DIARIA_COMISSAO";
public static final String RETER_COMISSAO_ADM_FECHAMENTO_CAIXA = "RETER_COMISSAO_ADM_FECHAMENTO_CAIXA";
public static enum FiltroEnviadosSefaz { SIM, NAO, TODOS };
public static final String CVESISTEMA_MOTIVO_CANCELAMENTO_ALTERACAO_POLTRONA = "ALTERACAO_POLTRONA";
public static final String BPE_ALTERACAO_POLTRONA = "110116";
public static final String ESTACAO_EMBARCADA = "ESTACAO_EMBARCADA";
public static final Integer CATEGORIA_NORMAL = 1;
public static final String BPE_AMBIENTE = "BPE_AMBIENTE";
public static final String BPE_URL = "BPE_URL";
public static final String BPE_URL_CONTIG = "BPE_URL_CONTIG_";
public static final String RELATORIO_BPE_OTIMIZADO = "RELATORIO_BPE_OTIMIZADO";
public static final String URL_PAINEL_EMBARCADA = "URL_PAINEL_EMBARCADA";
public static final String EXIGE_EMAIL_OU_TEL_CAD_CLIENTE = "EXIGE_EMAIL_OU_TEL_CAD_CLIENTE";
public static final String SMTP_COMISSAO_EMAIL = "SMTP_COMISSAO_EMAIL";
public static final String SMTP_COMISSAO_HOST = "SMTP_COMISSAO_HOST";
public static final String SMTP_COMISSAO_AUTENTICACAO = "SMTP_COMISSAO_AUTENTICACAO";
public static final String SMTP_COMISSAO_PASS = "SMTP_COMISSAO_PASS";
public static final String SMTP_COMISSAO_PORT = "SMTP_COMISSAO_PORT";
public static final String SMTP_COMISSAO_USER = "SMTP_COMISSAO_USER";
}

View File

@ -0,0 +1,37 @@
package com.rjconsultores.ventaboletos.constantes;
public class ConstantesFuncionSistema {
private ConstantesFuncionSistema() {
}
public static final String CLAVE_EDITAR_USUARIO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.SEGURIDAD.MENU.USUARIO";
public static final String CLAVE_EDITAR_COMISSAO = "COM.RJCONSULTORES.ADMINISTRACION.PUNTOVENTA.EDITARCOMISSAO";
public static final String CLAVE_EXIBIR_TAB_COMISSAO_CONTA = "COM.RJCONSULTORES.ADMINISTRACION.PUNTOVENTA.EDITARPORCENTAGEMCONTA";
public static final String CLAVE_REABRIR_MOVIMENTODIARIO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.COMISSAO.MENU.CONFERENCIACOMISSAO.REABRIRMOVIMENTODIARIO";
public static final String CLAVE_ENCERRAR_MOVIMENTODIARIO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.COMISSAO.MENU.CONFERENCIACOMISSAO.ENCERRARMOVIMENTODIARIO";
public static final String CLAVE_GENERA_FOLIOSISTEMA_VTA_INT_IMP_POSTERIOR = "COM.RJCONSULTORES.ADMINISTRACION.GUI.CATALOGO.MENU.EMPRESA.GENERAFOLIOSISTEMAVTAINTIMPPOSTERIOR";
public static final String CLAVE_EDITAR_VENDA_SEM_REDUCAO_Z = "COM.RJCONSULTORES.ADMINISTRACION.GUI.CATALOGO.MENU.EMPRESA.RESTRIGEVENDAREDUCAOZ";
public static final String CLAVE_EDITAR_ALTERA_EXIBECANCEL = "COM.RJCONSULTORES.ADMINISTRACION.GUI.CONFIGURACIONECCOMERCIALES.MOTIVOCANCELACION.ALTERAEXIBECANCEL";
public static final String CLAVE_CALCULODIARIOCOMISSAO_AUTORIZACAOCALCULOTODASAGENCIAS = "COM.RJCONSULTORES.ADM.CALCULODIARIOCOMISSAO.AUTORIZACAOCALCULOTODASAGENCIAS";
public static final String CLAVE_HISTORICO_COMPRAS = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOHISTORICOCOMPRAS";
public static final String CLAVE_EXPORTACAO_SGTI = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ANALITICO.SGTI";
public static final String CLAVE_POSICAO_VENDA_BILHETE_IDOSO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOPOSICAOVENDABILHETEIDOSO";
public static final String CLAVE_INTEGRACAO_ANTI_FRAUDE = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOINTEGRACAOANTIFRAUDE";
public static final String CLAVE_TARIFAS_DESABILITAR_BOTAO_EXCLUIR_TODOS = "COM.RJCONSULTORES.VENTABOLETOS.GUI.ADM.PRECO.EXCLUIR.TODAS.PESQUISA";
public static final String CLAVE_CONFIGURACAO_VENDA_EMBARCADA = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.CONFVENDAEMBARCADA";
public static final String CLAVE_RELATORIO_VENDA_EMBARCADA = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOVENDAEMBARCADA";
public static final String CLAVE_CONTINGENCIA = "COM.RJCONSULTORES.ADMINISTRACION.GUI.SEGURIDAD.MENU.CONTINGENCIA";
public static final String CLAVE_TROCO_SIMPLES = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.TROCOSIMPLES";
public static final String CLAVE_RELATORIO_TROCO_SIMPLES = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.RELATORIOTROCOSIMPLES";
public static final String CLAVE_RELATORIO_ESTORNO_TROCO_SIMPLES = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.RELATORIOESTORNOTROCOSIMPLES";
public static final String CLAVE_CONFIG_EMITE_SOMENTE_CUPOM_EMBARQUE = "COM.RJCONSULTORES.ADMINISTRACION.GUI.CONFIGURACIONECCOMERCIALES.CONFIGTIPOPASSAGEM.EMITESOMENTECPEMB";
public static final String CLAVE_ADM_PRICING_MODIFICACAOMASSIVAWS = "COM.RJCONSULTORES.ADMINISTRACION.GUI.PRICING.MODIFICACAOMASSIVAWS";
public static final String CLAVE_ESTOQUE_W2I = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.ESTOQUEW2I";
public static final String CLAVE_UPLOAD_ARQUIVO_CONFIGURACAO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.SEGURIDAD.CUSTOMSISTEMA.UPLOADARQUIVOCONFIGURACAO";
public static final String CLAVE_OPERADORES_DISPOSITIVO_VENDA_EMBARCADA = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.CONFVENDAEMBARCADA.OPERADORESDISP";
public static final String CLAVE_MANUTENCAO_FLEXBUS = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.FLEXBUS";
public static final String CLAVE_RELATORIO_PRICING_ESPECIFICO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.PRICING.MENU.RELATORIOPRICINGESPECIFICO";
public static final String CLAVE_MODIFICACAO_EMBARCADA = "COM.RJCONSULTORES.ADMINISTRACION.GUI.TARIFAS.MENU.MODIFICACIONMASIVAEMBARCADA";
public static final String CLAVE_AUTORIZACAO_RUTA = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.AUTORIZACAORUTA";
}

View File

@ -0,0 +1,7 @@
package com.rjconsultores.ventaboletos.constantes;
public interface ConstantesTipoDesconto {
int DESCONTO_POR_NUMERO_DOCUMENTO = 1,
DESCONTO_POR_QUANTIDADE = 2,
TIPO_DESCONTO_NAO_INFORMADO = 0;
}

View File

@ -0,0 +1,8 @@
package com.rjconsultores.ventaboletos.constantes;
public interface ConstantesTipoValidaVenta {
String COD_AGENCIA = "A";
String COD_MOTORISTA = "M";
String AGENCIA = "AGENCIA";
String MOTORISTA = "MOTORISTA";
}

View File

@ -0,0 +1,11 @@
package com.rjconsultores.ventaboletos.constantes;
public class ConstantesVendaEmbarcada {
public static final int VENDA_GERADA = 0;
public static final int VENDA_BOLETO_ERROR = 1;
public static final int VENDA_BOLETO_FORMAPAGO_ERROR = 2;
public static final int VENDA_CAJA_ERROR = 3;
public static final int VENDA_CAJA_FORMAPAGO_ERROR = 4;
}

View File

@ -0,0 +1,24 @@
package com.rjconsultores.ventaboletos.constantes;
public class DescricaoTipoVenta {
public static String getDescricaoTipoVenta(Integer tipoVentaId) {
if(Constantes.TPV_DIRECTO_NORMAL.intValue() == tipoVentaId) {
return "NORMAL";
} else if(Constantes.TPV_MANUAL.intValue() == tipoVentaId) {
return "MANUAL";
} else if(Constantes.TPV_BOLETO_REMOTO.intValue() == tipoVentaId) {
return "GAP";
} else if(Constantes.TPV_TRANSFERENCIAS.intValue() == tipoVentaId) {
return "TRANSFERENCIA";
} else if(Constantes.TPV_CAMBIO_VIAJE.intValue() == tipoVentaId) {
return "TROCA PASSAGEM";
} else if(Constantes.TPV_CHECKIN_VIAGEM.intValue() == tipoVentaId) {
return "CHECKIN VIAGEM";
} else if(Constantes.TPV_BOLETO_ABIERTO.intValue() == tipoVentaId) {
return "BOLETO ABERTO";
}
return "";
}
}

View File

@ -0,0 +1,95 @@
package com.rjconsultores.ventaboletos.constantes;
public enum TipoEventoExtra {
NAO_ESPECIFICADO{
public String toString() {
return " ";
}
},
OUTRO{
public String toString() {
return "OUTRO";
}
},
SEGURO_OPCIONAL{
public String toString() {
return "SEGURO_OPCIONAL";
}
},
EXCESSO_BAGAGEM{
public String toString() {
return "EXCESSO_BAGAGEM";
}
},
TAXA_EMBARQUE{
public String toString() {
return "TAXA_EMBARQUE";
}
},
SEGURO_RESSARCIMENTO{
public String toString() {
return "SEGURO_RESSARCIMENTO";
}
},
TAXA_EMBARQUE_RESSARCIMENTO{
public String toString() {
return "TAXA_EMBARQUE_RESSARCIMENTO";
}
},
MULTA{
public String toString() {
return "MULTA";
}
},
DIF_MAIOR{
public String toString() {
return "DIF_MAIOR";
}
},
DIF_MENOR{
public String toString() {
return "DIF_MENOR";
}
},
SUPRIMENTO{
public String toString() {
return "SUPRIMENTO";
}
},
SANGRIA{
public String toString() {
return "SANGRIA";
}
},
RECARGA_CELULAR{
public String toString() {
return "RECARGA_CELULAR";
}
},
RECARGA_TV{
public String toString() {
return "RECARGA_TV";
}
},
RECARGA_PIN{
public String toString() {
return "RECARGA_PIN";
}
},
PACOTE{
public String toString() {
return "PACOTE";
}
},
SMART_CARD{
public String toString() {
return "SMART_CARD";
}
},
TAXA_CONVENIENCIA_SVI{
public String toString() {
return "TAXA_CONVENIENCIA_SVI";
}
};
}

View File

@ -0,0 +1,8 @@
package com.rjconsultores.ventaboletos.constantes;
public enum TipoSeguro {
SEGURO,
TPP;
}

View File

@ -0,0 +1,12 @@
package com.rjconsultores.ventaboletos.dao;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.AbastoBoleto;
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
public interface AbastoBoletoDAO extends GenericDAO<AbastoBoleto, Integer> {
public List<AbastoBoleto> buscaAbastoBoletoPorPuntoVenta(PuntoVenta puntoVenta);
}

View File

@ -0,0 +1,34 @@
package com.rjconsultores.ventaboletos.dao;
import java.util.Date;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.AbastoCentral;
import com.rjconsultores.ventaboletos.entidad.Aidf;
import com.rjconsultores.ventaboletos.entidad.Estacion;
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
public interface AbastoCentralDAO extends GenericDAO<AbastoCentral, Long> {
public List<AbastoCentral> obtenerBilhetes(Aidf aidf, PuntoVenta origem);
public List<AbastoCentral> obtenerBilhetes(Aidf aidf, String formInicial, String formFinal, PuntoVenta origem);
public List<AbastoCentral> obtenerBilhetesPorPuntoVenta(PuntoVenta puntoVentaBilhetes);
public List<AbastoCentral> obtenerBilhetesPorPuntoVenta(PuntoVenta puntoVentaBilhetes, Estacion origem);
public List<AbastoCentral> obtenerBilhetesPorPuntoVenta(String formInicial, String formFinal, PuntoVenta puntoVentaBilhetes);
public List<AbastoCentral> obtenerBilhetesPorPuntoVenta(String numSerie, String formInicial, String formFinal, PuntoVenta puntoVentaBilhetes, Estacion origem);
public void actualizaBilhetes(List<AbastoCentral> bilhetes, PuntoVenta destino);
public void actualizaBilhetes(List<AbastoCentral> bilhetes, Estacion destino);
public void suscribirBilhetes(List<AbastoCentral> bilhetes);
public List<AbastoCentral> buscaBilhetesPorAidf(Aidf aidf);
public void gravaControleEstoqueMigracao(PuntoVenta puntoVenta, Date fecmodif, Integer usuarioId);
public List<String> buscarSeriesBilhetesPorEstacion(Estacion estacion);
public void borrarLosQueTienenAIDF(Aidf aidf);
}

View File

@ -0,0 +1,16 @@
package com.rjconsultores.ventaboletos.dao;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.AbastoCentral;
import com.rjconsultores.ventaboletos.entidad.AbastoHisto;
import com.rjconsultores.ventaboletos.entidad.Aidf;
import com.rjconsultores.ventaboletos.entidad.TipoMovimentacion;
public interface AbastoHistoDAO extends GenericDAO<AbastoHisto, Long> {
public void grabaHistoricoBilhetes(List<AbastoCentral> bilhetes, TipoMovimentacion tipoMovimentacion);
public void borrarLosQueTienenAIDF(Aidf aidf);
}

View File

@ -0,0 +1,21 @@
package com.rjconsultores.ventaboletos.dao;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.AgrupamentoParada;
public interface AgruparParadaDAO {
public AgrupamentoParada obtenerID(Integer id);
public AgrupamentoParada suscribir(AgrupamentoParada entidad);
public AgrupamentoParada actualizacion(AgrupamentoParada entidad);
public List<AgrupamentoParada> obtenerTodos();
public List<AgrupamentoParada> buscar(String descAgrupamentoParada);
public List<AgrupamentoParada> buscarCVE(String cveAgrupamentoParada);
}

View File

@ -0,0 +1,27 @@
package com.rjconsultores.ventaboletos.dao;
import java.sql.Connection;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.Aidf;
import com.rjconsultores.ventaboletos.entidad.Empresa;
import com.rjconsultores.ventaboletos.entidad.Estado;
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
import com.rjconsultores.ventaboletos.vo.aidf.AidfVo;
public interface AidfDAO extends GenericDAO<Aidf, Long> {
public List<Aidf> buscaAidfsPorEmpresas(List<Empresa> empresas);
public List<AidfVo> obtenerAidfFromSerieDocfiscal(String serie, String docfiscal, Connection conn);
public Boolean existeAidfComCodFiscalEEstado(Long idAidf, Integer especieId, String docFiscal, Estado estado);
public List<Aidf> buscaAidfEstadoEmpresa(Integer empresaId, Integer estadoId,Boolean isRMD);
public String buscaUltimoAidfRMDUtilizado(Long idAidf, Integer empresaId, Integer estadoId);
public boolean vaidaRMDUtilizado(Long idAidf, Integer empresaId, Integer estadoId, String folio);
public Boolean validarDocFiscalPorEstadoAgencia(Long idAidf, Integer especieId, String docFiscal, String formInicial, String formFinal, Estado estado, PuntoVenta agencia);
}

View File

@ -0,0 +1,7 @@
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.AidfEspecie;
public interface AidfEspecieDAO extends GenericDAO<AidfEspecie, Integer> {
}

View File

@ -0,0 +1,7 @@
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.AidfTipo;
public interface AidfTipoDAO extends GenericDAO<AidfTipo, Integer> {
}

View File

@ -0,0 +1,7 @@
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra;
public interface AjusteEventoExtraDAO extends GenericDAO<AjusteEventoExtra,Integer>{
}

View File

@ -0,0 +1,24 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.AlertaCtrl;
import com.rjconsultores.ventaboletos.entidad.ClaseServicio;
import com.rjconsultores.ventaboletos.entidad.Corrida;
import com.rjconsultores.ventaboletos.entidad.Parada;
import com.rjconsultores.ventaboletos.entidad.Ruta;
import java.math.BigDecimal;
import java.util.List;
/**
*
* @author Administrador
*/
public interface AlertaCtrlDAO extends GenericDAO<AlertaCtrl, Integer> {
public List<AlertaCtrl> buscar(Parada origem, Parada destino, Ruta ruta, ClaseServicio claseServicio, Integer tiempoAlta, Integer tiempoBaja, BigDecimal percAlta, BigDecimal percBaja);
public List<AlertaCtrl> buscarCorrida(Corrida corrida);
}

View File

@ -0,0 +1,60 @@
package com.rjconsultores.ventaboletos.dao;
import java.util.ArrayList;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.AliasServico;
import com.rjconsultores.ventaboletos.entidad.ClaseServicio;
import com.rjconsultores.ventaboletos.entidad.Empresa;
import com.rjconsultores.ventaboletos.entidad.OrgaoConcedente;
import com.rjconsultores.ventaboletos.entidad.Parada;
import com.rjconsultores.ventaboletos.entidad.Ruta;
public interface AliasServicoDAO extends GenericDAO<AliasServico, Integer>{
/**
* Realiza a buscar com os filtros informados e restringindo o corridaId para is null
*
* @param origenId
* @param destinoId
* @param rutaId
* @return
*/
public List<AliasServico> buscarAliasSemCorrida(Integer origenId,Integer destinoId,Integer rutaId);
/**
* Realiza a busca com os filtro informados.
* @param origenId
* @param destinoId
* @param rutaId
* @param corridaId
* @return
*/
public List<AliasServico> buscar(Integer origenId,Integer destinoId,Integer rutaId,Integer corridaId);
/**
* Realiza a busca com os filtro informados.
* @param linas
* @param empresas
* @param tiposClasses
* @param orgaos
* @param prefixo
* @return
*/
public List<AliasServico> buscarPorLinhaEmpresa(List<Ruta> linhas, List<Empresa> empresas, List<ClaseServicio> tiposClasses, List<OrgaoConcedente> orgaos, String prefixo);
/**
* Realiza a busca com os filtro informados.
* @param origem
* @param destino
* @param linha
* @param idCorrida
* @return
*/
public AliasServico existe(Parada origem, Parada destino, Ruta linha, Integer idCorrida);
List<AliasServico> buscarPorRuta(Integer rutaId);
}

View File

@ -0,0 +1,12 @@
package com.rjconsultores.ventaboletos.dao;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.AliquotaEstadoDestino;
import com.rjconsultores.ventaboletos.entidad.EmpresaImposto;
public interface AliquotaEstadoDestinoDAO extends GenericDAO<AliquotaEstadoDestino, Integer> {
public List<AliquotaEstadoDestino> getChildrens(EmpresaImposto parent);
}

View File

@ -0,0 +1,17 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.Articulo;
import java.util.List;
/**
*
* @author Administrador
*/
public interface ArticuloDAO extends GenericDAO<Articulo, Integer> {
public List<Articulo> buscar(String descarticulo);
}

View File

@ -0,0 +1,14 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.AsientoExclusivo;
/**
*
* @author rodrigo
*/
public interface AsientoExclusivoDAO extends GenericDAO<AsientoExclusivo, Integer> {
}

View File

@ -0,0 +1,12 @@
package com.rjconsultores.ventaboletos.dao;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.AuditLog;
import com.rjconsultores.ventaboletos.entidad.AuditModule;
public interface AuditLogDAO extends GenericDAO<AuditLog, Long> {
public List<AuditLog> carregarLog(AuditModule modulo);
public List<AuditLog> filtrarLog(AuditLog log);
}

View File

@ -0,0 +1,7 @@
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.AuditModule;
public interface AuditModuleDAO extends GenericDAO<AuditModule, Long>{
}

View File

@ -0,0 +1,7 @@
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.AuditService;
public interface AuditServiceDAO extends GenericDAO<AuditService, Long> {
public AuditService carregarService(AuditService auditService);
}

View File

@ -0,0 +1,18 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.Autobus;
import com.rjconsultores.ventaboletos.entidad.DiagramaAutobus;
import java.util.List;
/**
*
* @author Administrador
*/
public interface AutobusDAO extends GenericDAO<Autobus, Integer> {
public List<Autobus> buscar(String numautobus, DiagramaAutobus diagramaAutobus);
}

View File

@ -0,0 +1,10 @@
package com.rjconsultores.ventaboletos.dao;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.Autobus;
import com.rjconsultores.ventaboletos.entidad.AutobusDoc;
public interface AutobusDocDAO extends GenericDAO<AutobusDoc, Integer> {
public List<AutobusDoc> obtenerPorAutobus(Autobus autobus);
}

View File

@ -0,0 +1,17 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.Autorizacion;
import java.util.List;
/**
*
* @author Administrador
*/
public interface AutorizacionDAO extends GenericDAO<Autorizacion, Integer> {
public List<Autorizacion> buscar(String nombautorizacion, String descautorizacion);
}

View File

@ -0,0 +1,19 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.Autorizacion;
import com.rjconsultores.ventaboletos.entidad.AutorizacionPerfil;
import com.rjconsultores.ventaboletos.entidad.Perfil;
import java.util.List;
/**
*
* @author Administrador
*/
public interface AutorizacionPerfilDAO extends GenericDAO<AutorizacionPerfil, Integer> {
public List<AutorizacionPerfil> buscar(Autorizacion autorizacion, Perfil perfil);
}

View File

@ -0,0 +1,17 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.Banco;
import java.util.List;
/**
*
* @author Rafius
*/
public interface BancoDAO extends GenericDAO<Banco, Integer> {
public List<Banco> buscar(Banco nombbanco);
}

View File

@ -0,0 +1,26 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import java.util.List;
import com.rjconsultores.ventaboletos.entidad.Boleto;
import com.rjconsultores.ventaboletos.vo.embarcada.PtoVtaUsuarioUltimaVendaDispositivoVO;
/**
*
* @author Fabricio
*/
public interface BoletoDAO extends GenericDAO<Boleto, Long> {
public Boleto buscarPeloImeiDoDispositivo(String imei);
public List<PtoVtaUsuarioUltimaVendaDispositivoVO> buscarUltimaVendaDosDispositivosEmbarcada();
@Override
Boleto suscribir(Boleto boleto);
public String getSequenciaBoletoId();
public String getSequenciaNumOperacion();
public String getSequenciaNumReservacion();
void insertBoletoRserva(Boleto miBoletoTemporal);
}

Some files were not shown because too many files have changed in this diff Show More