join ModelWeb
parent
aa0be24925
commit
d1c579be8e
|
@ -1,10 +1,10 @@
|
||||||
/.classpath
|
/.classpath
|
||||||
/.project
|
/.project
|
||||||
/.settings
|
/.settings
|
||||||
/target
|
/target
|
||||||
/settings.xml
|
/settings.xml
|
||||||
/dist
|
/dist
|
||||||
/.factorypath
|
/.factorypath
|
||||||
/*.BASE.xml
|
/*.BASE.xml
|
||||||
/*.LOCAL.xml
|
/*.LOCAL.xml
|
||||||
/*.REMOTE.xml
|
/*.REMOTE.xml
|
|
@ -1,235 +1,235 @@
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<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">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ModelWeb</artifactId>
|
<artifactId>ModelWeb</artifactId>
|
||||||
<version>1.122.1</version>
|
<version>1.122.1</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>rj-releases</id>
|
<id>rj-releases</id>
|
||||||
<url>http://52.5.53.15:8081/nexus/content/repositories/releases/</url>
|
<url>http://52.5.53.15:8081/nexus/content/repositories/releases/</url>
|
||||||
</repository>
|
</repository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src</sourceDirectory>
|
<sourceDirectory>src</sourceDirectory>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.8.1</version>
|
<version>3.8.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>1.8</source>
|
<source>1.8</source>
|
||||||
<target>1.8</target>
|
<target>1.8</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>brazilutils</artifactId>
|
<artifactId>brazilutils</artifactId>
|
||||||
<version>0.1.1</version>
|
<version>0.1.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-lang</groupId>
|
<groupId>commons-lang</groupId>
|
||||||
<artifactId>commons-lang</artifactId>
|
<artifactId>commons-lang</artifactId>
|
||||||
<version>2.2</version>
|
<version>2.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework</groupId>
|
<groupId>org.springframework</groupId>
|
||||||
<artifactId>spring-orm</artifactId>
|
<artifactId>spring-orm</artifactId>
|
||||||
<version>3.0.6.RELEASE</version>
|
<version>3.0.6.RELEASE</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework</groupId>
|
<groupId>org.springframework</groupId>
|
||||||
<artifactId>spring-web</artifactId>
|
<artifactId>spring-web</artifactId>
|
||||||
<version>3.0.6.RELEASE</version><!-- TODO verificar upgrade pra 5.3.37-->
|
<version>3.0.6.RELEASE</version><!-- TODO verificar upgrade pra 5.3.37-->
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.security</groupId>
|
<groupId>org.springframework.security</groupId>
|
||||||
<artifactId>spring-security-core</artifactId>
|
<artifactId>spring-security-core</artifactId>
|
||||||
<version>3.0.7.RELEASE</version>
|
<version>3.0.7.RELEASE</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.security</groupId>
|
<groupId>org.springframework.security</groupId>
|
||||||
<artifactId>spring-security-web</artifactId>
|
<artifactId>spring-security-web</artifactId>
|
||||||
<version>3.0.7.RELEASE</version>
|
<version>3.0.7.RELEASE</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.security</groupId>
|
<groupId>org.springframework.security</groupId>
|
||||||
<artifactId>spring-security-config</artifactId>
|
<artifactId>spring-security-config</artifactId>
|
||||||
<version>3.0.7.RELEASE</version>
|
<version>3.0.7.RELEASE</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.zkoss.zk</groupId>
|
<groupId>org.zkoss.zk</groupId>
|
||||||
<artifactId>zkplus</artifactId>
|
<artifactId>zkplus</artifactId>
|
||||||
<version>5.0.9</version>
|
<version>5.0.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.zkoss.zk</groupId>
|
<groupId>org.zkoss.zk</groupId>
|
||||||
<artifactId>zul</artifactId>
|
<artifactId>zul</artifactId>
|
||||||
<version>5.0.9</version>
|
<version>5.0.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.sf.jasperreports</groupId>
|
<groupId>net.sf.jasperreports</groupId>
|
||||||
<artifactId>jasperreports</artifactId>
|
<artifactId>jasperreports</artifactId>
|
||||||
<version>6.0.0</version>
|
<version>6.0.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.lowagie</groupId>
|
<groupId>com.lowagie</groupId>
|
||||||
<artifactId>itext</artifactId>
|
<artifactId>itext</artifactId>
|
||||||
<version>2.1.7</version>
|
<version>2.1.7</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-dbutils</groupId>
|
<groupId>commons-dbutils</groupId>
|
||||||
<artifactId>commons-dbutils</artifactId>
|
<artifactId>commons-dbutils</artifactId>
|
||||||
<version>1.6</version>
|
<version>1.6</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.code.gson</groupId>
|
<groupId>com.google.code.gson</groupId>
|
||||||
<artifactId>gson</artifactId>
|
<artifactId>gson</artifactId>
|
||||||
<version>2.8.9</version>
|
<version>2.8.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-collections</groupId>
|
<groupId>commons-collections</groupId>
|
||||||
<artifactId>commons-collections</artifactId>
|
<artifactId>commons-collections</artifactId>
|
||||||
<version>3.2.1</version>
|
<version>3.2.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.poi</groupId>
|
<groupId>org.apache.poi</groupId>
|
||||||
<artifactId>poi-ooxml</artifactId>
|
<artifactId>poi-ooxml</artifactId>
|
||||||
<version>3.8</version>
|
<version>3.8</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>stax</groupId>
|
<groupId>stax</groupId>
|
||||||
<artifactId>stax-api</artifactId>
|
<artifactId>stax-api</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.json</groupId>
|
<groupId>org.json</groupId>
|
||||||
<artifactId>json</artifactId>
|
<artifactId>json</artifactId>
|
||||||
<version>20140107</version>
|
<version>20140107</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jboss.resteasy</groupId>
|
<groupId>org.jboss.resteasy</groupId>
|
||||||
<artifactId>resteasy-jaxrs</artifactId>
|
<artifactId>resteasy-jaxrs</artifactId>
|
||||||
<version>3.14.0.Final</version>
|
<version>3.14.0.Final</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.httpcomponents</groupId>
|
<groupId>org.apache.httpcomponents</groupId>
|
||||||
<artifactId>httpcore</artifactId>
|
<artifactId>httpcore</artifactId>
|
||||||
<version>4.4.14</version>
|
<version>4.4.14</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.httpcomponents</groupId>
|
<groupId>org.apache.httpcomponents</groupId>
|
||||||
<artifactId>httpclient</artifactId>
|
<artifactId>httpclient</artifactId>
|
||||||
<version>4.5.13</version>
|
<version>4.5.13</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.codehaus.jettison</groupId>
|
<groupId>org.codehaus.jettison</groupId>
|
||||||
<artifactId>jettison</artifactId>
|
<artifactId>jettison</artifactId>
|
||||||
<version>1.0.1</version>
|
<version>1.0.1</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>stax</groupId>
|
<groupId>stax</groupId>
|
||||||
<artifactId>stax-api</artifactId>
|
<artifactId>stax-api</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.sun.mail</groupId>
|
<groupId>com.sun.mail</groupId>
|
||||||
<artifactId>javax.mail</artifactId>
|
<artifactId>javax.mail</artifactId>
|
||||||
<version>1.4.4</version>
|
<version>1.4.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>GeneradorBoletosCNAB</artifactId>
|
<artifactId>GeneradorBoletosCNAB</artifactId>
|
||||||
<version>1.8.0</version>
|
<version>1.8.0</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>log4j</groupId>
|
<groupId>log4j</groupId>
|
||||||
<artifactId>log4j</artifactId>
|
<artifactId>log4j</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>WSTotvs</artifactId>
|
<artifactId>WSTotvs</artifactId>
|
||||||
<version>1.3.1</version>
|
<version>1.3.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>WSAG</artifactId>
|
<artifactId>WSAG</artifactId>
|
||||||
<version>1.3.1</version>
|
<version>1.3.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>Auditador</artifactId>
|
<artifactId>Auditador</artifactId>
|
||||||
<version>1.1.1</version>
|
<version>1.1.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.servlet</groupId>
|
<groupId>javax.servlet</groupId>
|
||||||
<artifactId>javax.servlet-api</artifactId>
|
<artifactId>javax.servlet-api</artifactId>
|
||||||
<version>3.1.0</version>
|
<version>3.1.0</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.nimbusds</groupId>
|
<groupId>com.nimbusds</groupId>
|
||||||
<artifactId>nimbus-jose-jwt</artifactId>
|
<artifactId>nimbus-jose-jwt</artifactId>
|
||||||
<classifier>jdk16</classifier>
|
<classifier>jdk16</classifier>
|
||||||
<version>4.11.2</version>
|
<version>4.11.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
<artifactId>lombok</artifactId>
|
<artifactId>lombok</artifactId>
|
||||||
<version>1.18.32</version>
|
<version>1.18.32</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mashape.unirest</groupId>
|
<groupId>com.mashape.unirest</groupId>
|
||||||
<artifactId>unirest-java</artifactId>
|
<artifactId>unirest-java</artifactId>
|
||||||
<version>1.4.9</version>
|
<version>1.4.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
</project>
|
</project>
|
|
@ -1,3 +1,3 @@
|
||||||
Manifest-Version: 1.0
|
Manifest-Version: 1.0
|
||||||
Ant-Version: Apache Ant 1.8.3
|
Ant-Version: Apache Ant 1.8.3
|
||||||
Created-By: 1.7.0-b147 (Oracle Corporation)
|
Created-By: 1.7.0-b147 (Oracle Corporation)
|
|
@ -1,316 +1,316 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.JAXBElement;
|
import javax.xml.bind.JAXBElement;
|
||||||
import javax.xml.bind.annotation.XmlElementDecl;
|
import javax.xml.bind.annotation.XmlElementDecl;
|
||||||
import javax.xml.bind.annotation.XmlRegistry;
|
import javax.xml.bind.annotation.XmlRegistry;
|
||||||
import javax.xml.namespace.QName;
|
import javax.xml.namespace.QName;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This object contains factory methods for each
|
* This object contains factory methods for each
|
||||||
* Java content interface and Java element interface
|
* Java content interface and Java element interface
|
||||||
* generated in the br.inf.portalfiscal.bpe package.
|
* generated in the br.inf.portalfiscal.bpe package.
|
||||||
* <p>An ObjectFactory allows you to programatically
|
* <p>An ObjectFactory allows you to programatically
|
||||||
* construct new instances of the Java representation
|
* construct new instances of the Java representation
|
||||||
* for XML content. The Java representation of XML
|
* for XML content. The Java representation of XML
|
||||||
* content can consist of schema derived interfaces
|
* content can consist of schema derived interfaces
|
||||||
* and classes representing the binding of schema
|
* and classes representing the binding of schema
|
||||||
* type definitions, element declarations and model
|
* type definitions, element declarations and model
|
||||||
* groups. Factory methods for each of these are
|
* groups. Factory methods for each of these are
|
||||||
* provided in this class.
|
* provided in this class.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlRegistry
|
@XmlRegistry
|
||||||
public class ObjectFactory {
|
public class ObjectFactory {
|
||||||
|
|
||||||
private final static QName _RetBPe_QNAME = new QName("http://www.portalfiscal.inf.br/bpe", "retBPe");
|
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
|
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.inf.portalfiscal.bpe
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public ObjectFactory() {
|
public ObjectFactory() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TImp }
|
* Create an instance of {@link TImp }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TImp createTImp() {
|
public TImp createTImp() {
|
||||||
return new TImp();
|
return new TImp();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TProtBPe }
|
* Create an instance of {@link TProtBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TProtBPe createTProtBPe() {
|
public TProtBPe createTProtBPe() {
|
||||||
return new TProtBPe();
|
return new TProtBPe();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe }
|
* Create an instance of {@link TBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe createTBPe() {
|
public TBPe createTBPe() {
|
||||||
return new TBPe();
|
return new TBPe();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe }
|
* Create an instance of {@link TBPe.InfBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe createTBPeInfBPe() {
|
public TBPe.InfBPe createTBPeInfBPe() {
|
||||||
return new TBPe.InfBPe();
|
return new TBPe.InfBPe();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.Pag }
|
* Create an instance of {@link TBPe.InfBPe.Pag }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.Pag createTBPeInfBPePag() {
|
public TBPe.InfBPe.Pag createTBPeInfBPePag() {
|
||||||
return new TBPe.InfBPe.Pag();
|
return new TBPe.InfBPe.Pag();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.Imp }
|
* Create an instance of {@link TBPe.InfBPe.Imp }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.Imp createTBPeInfBPeImp() {
|
public TBPe.InfBPe.Imp createTBPeInfBPeImp() {
|
||||||
return new TBPe.InfBPe.Imp();
|
return new TBPe.InfBPe.Imp();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.InfValorBPe }
|
* Create an instance of {@link TBPe.InfBPe.InfValorBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.InfValorBPe createTBPeInfBPeInfValorBPe() {
|
public TBPe.InfBPe.InfValorBPe createTBPeInfBPeInfValorBPe() {
|
||||||
return new TBPe.InfBPe.InfValorBPe();
|
return new TBPe.InfBPe.InfValorBPe();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.InfViagem }
|
* Create an instance of {@link TBPe.InfBPe.InfViagem }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.InfViagem createTBPeInfBPeInfViagem() {
|
public TBPe.InfBPe.InfViagem createTBPeInfBPeInfViagem() {
|
||||||
return new TBPe.InfBPe.InfViagem();
|
return new TBPe.InfBPe.InfViagem();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.InfPassagem }
|
* Create an instance of {@link TBPe.InfBPe.InfPassagem }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.InfPassagem createTBPeInfBPeInfPassagem() {
|
public TBPe.InfBPe.InfPassagem createTBPeInfBPeInfPassagem() {
|
||||||
return new TBPe.InfBPe.InfPassagem();
|
return new TBPe.InfBPe.InfPassagem();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TRetBPe }
|
* Create an instance of {@link TRetBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TRetBPe createTRetBPe() {
|
public TRetBPe createTRetBPe() {
|
||||||
return new TRetBPe();
|
return new TRetBPe();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TEnviBPe }
|
* Create an instance of {@link TEnviBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TEnviBPe createTEnviBPe() {
|
public TEnviBPe createTEnviBPe() {
|
||||||
return new TEnviBPe();
|
return new TEnviBPe();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TEndereco }
|
* Create an instance of {@link TEndereco }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TEndereco createTEndereco() {
|
public TEndereco createTEndereco() {
|
||||||
return new TEndereco();
|
return new TEndereco();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TEndeEmi }
|
* Create an instance of {@link TEndeEmi }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TEndeEmi createTEndeEmi() {
|
public TEndeEmi createTEndeEmi() {
|
||||||
return new TEndeEmi();
|
return new TEndeEmi();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TImp.ICMS00 }
|
* Create an instance of {@link TImp.ICMS00 }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TImp.ICMS00 createTImpICMS00() {
|
public TImp.ICMS00 createTImpICMS00() {
|
||||||
return new TImp.ICMS00();
|
return new TImp.ICMS00();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TImp.ICMS20 }
|
* Create an instance of {@link TImp.ICMS20 }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TImp.ICMS20 createTImpICMS20() {
|
public TImp.ICMS20 createTImpICMS20() {
|
||||||
return new TImp.ICMS20();
|
return new TImp.ICMS20();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TImp.ICMS45 }
|
* Create an instance of {@link TImp.ICMS45 }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TImp.ICMS45 createTImpICMS45() {
|
public TImp.ICMS45 createTImpICMS45() {
|
||||||
return new TImp.ICMS45();
|
return new TImp.ICMS45();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TImp.ICMS90 }
|
* Create an instance of {@link TImp.ICMS90 }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TImp.ICMS90 createTImpICMS90() {
|
public TImp.ICMS90 createTImpICMS90() {
|
||||||
return new TImp.ICMS90();
|
return new TImp.ICMS90();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TImp.ICMSOutraUF }
|
* Create an instance of {@link TImp.ICMSOutraUF }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TImp.ICMSOutraUF createTImpICMSOutraUF() {
|
public TImp.ICMSOutraUF createTImpICMSOutraUF() {
|
||||||
return new TImp.ICMSOutraUF();
|
return new TImp.ICMSOutraUF();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TImp.ICMSSN }
|
* Create an instance of {@link TImp.ICMSSN }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TImp.ICMSSN createTImpICMSSN() {
|
public TImp.ICMSSN createTImpICMSSN() {
|
||||||
return new TImp.ICMSSN();
|
return new TImp.ICMSSN();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TProtBPe.InfProt }
|
* Create an instance of {@link TProtBPe.InfProt }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TProtBPe.InfProt createTProtBPeInfProt() {
|
public TProtBPe.InfProt createTProtBPeInfProt() {
|
||||||
return new TProtBPe.InfProt();
|
return new TProtBPe.InfProt();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPeSupl }
|
* Create an instance of {@link TBPe.InfBPeSupl }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPeSupl createTBPeInfBPeSupl() {
|
public TBPe.InfBPeSupl createTBPeInfBPeSupl() {
|
||||||
return new TBPe.InfBPeSupl();
|
return new TBPe.InfBPeSupl();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.Ide }
|
* Create an instance of {@link TBPe.InfBPe.Ide }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.Ide createTBPeInfBPeIde() {
|
public TBPe.InfBPe.Ide createTBPeInfBPeIde() {
|
||||||
return new TBPe.InfBPe.Ide();
|
return new TBPe.InfBPe.Ide();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.Emit }
|
* Create an instance of {@link TBPe.InfBPe.Emit }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.Emit createTBPeInfBPeEmit() {
|
public TBPe.InfBPe.Emit createTBPeInfBPeEmit() {
|
||||||
return new TBPe.InfBPe.Emit();
|
return new TBPe.InfBPe.Emit();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.Comp }
|
* Create an instance of {@link TBPe.InfBPe.Comp }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.Comp createTBPeInfBPeComp() {
|
public TBPe.InfBPe.Comp createTBPeInfBPeComp() {
|
||||||
return new TBPe.InfBPe.Comp();
|
return new TBPe.InfBPe.Comp();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.Agencia }
|
* Create an instance of {@link TBPe.InfBPe.Agencia }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.Agencia createTBPeInfBPeAgencia() {
|
public TBPe.InfBPe.Agencia createTBPeInfBPeAgencia() {
|
||||||
return new TBPe.InfBPe.Agencia();
|
return new TBPe.InfBPe.Agencia();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.InfBPeSub }
|
* Create an instance of {@link TBPe.InfBPe.InfBPeSub }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.InfBPeSub createTBPeInfBPeInfBPeSub() {
|
public TBPe.InfBPe.InfBPeSub createTBPeInfBPeInfBPeSub() {
|
||||||
return new TBPe.InfBPe.InfBPeSub();
|
return new TBPe.InfBPe.InfBPeSub();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.AutXML }
|
* Create an instance of {@link TBPe.InfBPe.AutXML }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.AutXML createTBPeInfBPeAutXML() {
|
public TBPe.InfBPe.AutXML createTBPeInfBPeAutXML() {
|
||||||
return new TBPe.InfBPe.AutXML();
|
return new TBPe.InfBPe.AutXML();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.InfAdic }
|
* Create an instance of {@link TBPe.InfBPe.InfAdic }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.InfAdic createTBPeInfBPeInfAdic() {
|
public TBPe.InfBPe.InfAdic createTBPeInfBPeInfAdic() {
|
||||||
return new TBPe.InfBPe.InfAdic();
|
return new TBPe.InfBPe.InfAdic();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.Pag.Card }
|
* Create an instance of {@link TBPe.InfBPe.Pag.Card }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.Pag.Card createTBPeInfBPePagCard() {
|
public TBPe.InfBPe.Pag.Card createTBPeInfBPePagCard() {
|
||||||
return new TBPe.InfBPe.Pag.Card();
|
return new TBPe.InfBPe.Pag.Card();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.Imp.ICMSUFFim }
|
* Create an instance of {@link TBPe.InfBPe.Imp.ICMSUFFim }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.Imp.ICMSUFFim createTBPeInfBPeImpICMSUFFim() {
|
public TBPe.InfBPe.Imp.ICMSUFFim createTBPeInfBPeImpICMSUFFim() {
|
||||||
return new TBPe.InfBPe.Imp.ICMSUFFim();
|
return new TBPe.InfBPe.Imp.ICMSUFFim();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.InfValorBPe.Comp }
|
* Create an instance of {@link TBPe.InfBPe.InfValorBPe.Comp }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.InfValorBPe.Comp createTBPeInfBPeInfValorBPeComp() {
|
public TBPe.InfBPe.InfValorBPe.Comp createTBPeInfBPeInfValorBPeComp() {
|
||||||
return new TBPe.InfBPe.InfValorBPe.Comp();
|
return new TBPe.InfBPe.InfValorBPe.Comp();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.InfViagem.InfTravessia }
|
* Create an instance of {@link TBPe.InfBPe.InfViagem.InfTravessia }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.InfViagem.InfTravessia createTBPeInfBPeInfViagemInfTravessia() {
|
public TBPe.InfBPe.InfViagem.InfTravessia createTBPeInfBPeInfViagemInfTravessia() {
|
||||||
return new TBPe.InfBPe.InfViagem.InfTravessia();
|
return new TBPe.InfBPe.InfViagem.InfTravessia();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TBPe.InfBPe.InfPassagem.InfPassageiro }
|
* Create an instance of {@link TBPe.InfBPe.InfPassagem.InfPassageiro }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe.InfBPe.InfPassagem.InfPassageiro createTBPeInfBPeInfPassagemInfPassageiro() {
|
public TBPe.InfBPe.InfPassagem.InfPassageiro createTBPeInfBPeInfPassagemInfPassageiro() {
|
||||||
return new TBPe.InfBPe.InfPassagem.InfPassageiro();
|
return new TBPe.InfBPe.InfPassagem.InfPassageiro();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link TRetBPe }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link TRetBPe }{@code >}}
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "http://www.portalfiscal.inf.br/bpe", name = "retBPe")
|
@XmlElementDecl(namespace = "http://www.portalfiscal.inf.br/bpe", name = "retBPe")
|
||||||
public JAXBElement<TRetBPe> createRetBPe(TRetBPe value) {
|
public JAXBElement<TRetBPe> createRetBPe(TRetBPe value) {
|
||||||
return new JAXBElement<TRetBPe>(_RetBPe_QNAME, TRetBPe.class, null, value);
|
return new JAXBElement<TRetBPe>(_RetBPe_QNAME, TRetBPe.class, null, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,155 +1,155 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.10.24 às 07:38:45 PM BRST
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tipo Pedido de Consulta da Situação Atual do Bilhete de Passagem Eletrônico
|
* Tipo Pedido de Consulta da Situação Atual do Bilhete de Passagem Eletrônico
|
||||||
*
|
*
|
||||||
* <p>Classe Java de TConsSitBPe complex type.
|
* <p>Classe Java de TConsSitBPe complex type.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="TConsSitBPe">
|
* <complexType name="TConsSitBPe">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
||||||
* <element name="xServ" type="{http://www.portalfiscal.inf.br/bpe}TServ"/>
|
* <element name="xServ" type="{http://www.portalfiscal.inf.br/bpe}TServ"/>
|
||||||
* <element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
|
* <element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerConsSitBPe" />
|
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerConsSitBPe" />
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "TConsSitBPe", propOrder = {
|
@XmlType(name = "TConsSitBPe", propOrder = {
|
||||||
"tpAmb",
|
"tpAmb",
|
||||||
"xServ",
|
"xServ",
|
||||||
"chBPe"
|
"chBPe"
|
||||||
})
|
})
|
||||||
public class TConsSitBPe {
|
public class TConsSitBPe {
|
||||||
|
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String tpAmb;
|
protected String tpAmb;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xServ;
|
protected String xServ;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String chBPe;
|
protected String chBPe;
|
||||||
@XmlAttribute(name = "versao", required = true)
|
@XmlAttribute(name = "versao", required = true)
|
||||||
protected String versao;
|
protected String versao;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade tpAmb.
|
* Obtém o valor da propriedade tpAmb.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTpAmb() {
|
public String getTpAmb() {
|
||||||
return tpAmb;
|
return tpAmb;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade tpAmb.
|
* Define o valor da propriedade tpAmb.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTpAmb(String value) {
|
public void setTpAmb(String value) {
|
||||||
this.tpAmb = value;
|
this.tpAmb = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xServ.
|
* Obtém o valor da propriedade xServ.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXServ() {
|
public String getXServ() {
|
||||||
return xServ;
|
return xServ;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xServ.
|
* Define o valor da propriedade xServ.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXServ(String value) {
|
public void setXServ(String value) {
|
||||||
this.xServ = value;
|
this.xServ = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade chBPe.
|
* Obtém o valor da propriedade chBPe.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getChBPe() {
|
public String getChBPe() {
|
||||||
return chBPe;
|
return chBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade chBPe.
|
* Define o valor da propriedade chBPe.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setChBPe(String value) {
|
public void setChBPe(String value) {
|
||||||
this.chBPe = value;
|
this.chBPe = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade versao.
|
* Obtém o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getVersao() {
|
public String getVersao() {
|
||||||
return versao;
|
return versao;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade versao.
|
* Define o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setVersao(String value) {
|
public void setVersao(String value) {
|
||||||
this.versao = value;
|
this.versao = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,371 +1,371 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tipo Dados do Endereço
|
* Tipo Dados do Endereço
|
||||||
*
|
*
|
||||||
* <p>Classe Java de TEndeEmi complex type.
|
* <p>Classe Java de TEndeEmi complex type.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="TEndeEmi">
|
* <complexType name="TEndeEmi">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="xLgr">
|
* <element name="xLgr">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="2"/>
|
* <minLength value="2"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="nro">
|
* <element name="nro">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="1"/>
|
* <minLength value="1"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="xCpl" minOccurs="0">
|
* <element name="xCpl" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="1"/>
|
* <minLength value="1"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="xBairro">
|
* <element name="xBairro">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="2"/>
|
* <minLength value="2"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="cMun" type="{http://www.portalfiscal.inf.br/bpe}TCodMunIBGE"/>
|
* <element name="cMun" type="{http://www.portalfiscal.inf.br/bpe}TCodMunIBGE"/>
|
||||||
* <element name="xMun">
|
* <element name="xMun">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="2"/>
|
* <minLength value="2"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="CEP" minOccurs="0">
|
* <element name="CEP" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
* <whiteSpace value="preserve"/>
|
* <whiteSpace value="preserve"/>
|
||||||
* <pattern value="[0-9]{8}"/>
|
* <pattern value="[0-9]{8}"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="UF" type="{http://www.portalfiscal.inf.br/bpe}TUf_sem_EX"/>
|
* <element name="UF" type="{http://www.portalfiscal.inf.br/bpe}TUf_sem_EX"/>
|
||||||
* <element name="fone" minOccurs="0">
|
* <element name="fone" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
* <whiteSpace value="preserve"/>
|
* <whiteSpace value="preserve"/>
|
||||||
* <pattern value="[0-9]{7,12}"/>
|
* <pattern value="[0-9]{7,12}"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="email" type="{http://www.portalfiscal.inf.br/bpe}TEmail" minOccurs="0"/>
|
* <element name="email" type="{http://www.portalfiscal.inf.br/bpe}TEmail" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "TEndeEmi", propOrder = {
|
@XmlType(name = "TEndeEmi", propOrder = {
|
||||||
"xLgr",
|
"xLgr",
|
||||||
"nro",
|
"nro",
|
||||||
"xCpl",
|
"xCpl",
|
||||||
"xBairro",
|
"xBairro",
|
||||||
"cMun",
|
"cMun",
|
||||||
"xMun",
|
"xMun",
|
||||||
"cep",
|
"cep",
|
||||||
"uf",
|
"uf",
|
||||||
"fone",
|
"fone",
|
||||||
"email"
|
"email"
|
||||||
})
|
})
|
||||||
public class TEndeEmi {
|
public class TEndeEmi {
|
||||||
|
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xLgr;
|
protected String xLgr;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String nro;
|
protected String nro;
|
||||||
protected String xCpl;
|
protected String xCpl;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xBairro;
|
protected String xBairro;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String cMun;
|
protected String cMun;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xMun;
|
protected String xMun;
|
||||||
@XmlElement(name = "CEP")
|
@XmlElement(name = "CEP")
|
||||||
protected String cep;
|
protected String cep;
|
||||||
@XmlElement(name = "UF", required = true)
|
@XmlElement(name = "UF", required = true)
|
||||||
@XmlSchemaType(name = "string")
|
@XmlSchemaType(name = "string")
|
||||||
protected TUfSemEX uf;
|
protected TUfSemEX uf;
|
||||||
protected String fone;
|
protected String fone;
|
||||||
protected String email;
|
protected String email;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xLgr.
|
* Obtém o valor da propriedade xLgr.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXLgr() {
|
public String getXLgr() {
|
||||||
return xLgr;
|
return xLgr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xLgr.
|
* Define o valor da propriedade xLgr.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXLgr(String value) {
|
public void setXLgr(String value) {
|
||||||
this.xLgr = value;
|
this.xLgr = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade nro.
|
* Obtém o valor da propriedade nro.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getNro() {
|
public String getNro() {
|
||||||
return nro;
|
return nro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade nro.
|
* Define o valor da propriedade nro.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setNro(String value) {
|
public void setNro(String value) {
|
||||||
this.nro = value;
|
this.nro = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xCpl.
|
* Obtém o valor da propriedade xCpl.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXCpl() {
|
public String getXCpl() {
|
||||||
return xCpl;
|
return xCpl;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xCpl.
|
* Define o valor da propriedade xCpl.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXCpl(String value) {
|
public void setXCpl(String value) {
|
||||||
this.xCpl = value;
|
this.xCpl = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xBairro.
|
* Obtém o valor da propriedade xBairro.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXBairro() {
|
public String getXBairro() {
|
||||||
return xBairro;
|
return xBairro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xBairro.
|
* Define o valor da propriedade xBairro.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXBairro(String value) {
|
public void setXBairro(String value) {
|
||||||
this.xBairro = value;
|
this.xBairro = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cMun.
|
* Obtém o valor da propriedade cMun.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCMun() {
|
public String getCMun() {
|
||||||
return cMun;
|
return cMun;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cMun.
|
* Define o valor da propriedade cMun.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCMun(String value) {
|
public void setCMun(String value) {
|
||||||
this.cMun = value;
|
this.cMun = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xMun.
|
* Obtém o valor da propriedade xMun.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXMun() {
|
public String getXMun() {
|
||||||
return xMun;
|
return xMun;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xMun.
|
* Define o valor da propriedade xMun.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXMun(String value) {
|
public void setXMun(String value) {
|
||||||
this.xMun = value;
|
this.xMun = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cep.
|
* Obtém o valor da propriedade cep.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCEP() {
|
public String getCEP() {
|
||||||
return cep;
|
return cep;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cep.
|
* Define o valor da propriedade cep.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCEP(String value) {
|
public void setCEP(String value) {
|
||||||
this.cep = value;
|
this.cep = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade uf.
|
* Obtém o valor da propriedade uf.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link TUfSemEX }
|
* {@link TUfSemEX }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TUfSemEX getUF() {
|
public TUfSemEX getUF() {
|
||||||
return uf;
|
return uf;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade uf.
|
* Define o valor da propriedade uf.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link TUfSemEX }
|
* {@link TUfSemEX }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setUF(TUfSemEX value) {
|
public void setUF(TUfSemEX value) {
|
||||||
this.uf = value;
|
this.uf = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade fone.
|
* Obtém o valor da propriedade fone.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getFone() {
|
public String getFone() {
|
||||||
return fone;
|
return fone;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade fone.
|
* Define o valor da propriedade fone.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setFone(String value) {
|
public void setFone(String value) {
|
||||||
this.fone = value;
|
this.fone = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade email.
|
* Obtém o valor da propriedade email.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getEmail() {
|
public String getEmail() {
|
||||||
return email;
|
return email;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade email.
|
* Define o valor da propriedade email.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setEmail(String value) {
|
public void setEmail(String value) {
|
||||||
this.email = value;
|
this.email = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,439 +1,439 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tipo Dados do Endereço
|
* Tipo Dados do Endereço
|
||||||
*
|
*
|
||||||
* <p>Classe Java de TEndereco complex type.
|
* <p>Classe Java de TEndereco complex type.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="TEndereco">
|
* <complexType name="TEndereco">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="xLgr">
|
* <element name="xLgr">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="255"/>
|
* <maxLength value="255"/>
|
||||||
* <minLength value="1"/>
|
* <minLength value="1"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="nro">
|
* <element name="nro">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="1"/>
|
* <minLength value="1"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="xCpl" minOccurs="0">
|
* <element name="xCpl" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="1"/>
|
* <minLength value="1"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="xBairro">
|
* <element name="xBairro">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="1"/>
|
* <minLength value="1"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="cMun" type="{http://www.portalfiscal.inf.br/bpe}TCodMunIBGE"/>
|
* <element name="cMun" type="{http://www.portalfiscal.inf.br/bpe}TCodMunIBGE"/>
|
||||||
* <element name="xMun">
|
* <element name="xMun">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="1"/>
|
* <minLength value="1"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="CEP" minOccurs="0">
|
* <element name="CEP" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
* <whiteSpace value="preserve"/>
|
* <whiteSpace value="preserve"/>
|
||||||
* <pattern value="[0-9]{8}"/>
|
* <pattern value="[0-9]{8}"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="UF" type="{http://www.portalfiscal.inf.br/bpe}TUf"/>
|
* <element name="UF" type="{http://www.portalfiscal.inf.br/bpe}TUf"/>
|
||||||
* <element name="cPais" minOccurs="0">
|
* <element name="cPais" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
* <whiteSpace value="preserve"/>
|
* <whiteSpace value="preserve"/>
|
||||||
* <pattern value="[0-9]{1,4}"/>
|
* <pattern value="[0-9]{1,4}"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="xPais" minOccurs="0">
|
* <element name="xPais" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TString">
|
||||||
* <maxLength value="60"/>
|
* <maxLength value="60"/>
|
||||||
* <minLength value="1"/>
|
* <minLength value="1"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="fone" minOccurs="0">
|
* <element name="fone" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
* <whiteSpace value="preserve"/>
|
* <whiteSpace value="preserve"/>
|
||||||
* <pattern value="[0-9]{7,12}"/>
|
* <pattern value="[0-9]{7,12}"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="email" type="{http://www.portalfiscal.inf.br/bpe}TEmail" minOccurs="0"/>
|
* <element name="email" type="{http://www.portalfiscal.inf.br/bpe}TEmail" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "TEndereco", propOrder = {
|
@XmlType(name = "TEndereco", propOrder = {
|
||||||
"xLgr",
|
"xLgr",
|
||||||
"nro",
|
"nro",
|
||||||
"xCpl",
|
"xCpl",
|
||||||
"xBairro",
|
"xBairro",
|
||||||
"cMun",
|
"cMun",
|
||||||
"xMun",
|
"xMun",
|
||||||
"cep",
|
"cep",
|
||||||
"uf",
|
"uf",
|
||||||
"cPais",
|
"cPais",
|
||||||
"xPais",
|
"xPais",
|
||||||
"fone",
|
"fone",
|
||||||
"email"
|
"email"
|
||||||
})
|
})
|
||||||
public class TEndereco {
|
public class TEndereco {
|
||||||
|
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xLgr;
|
protected String xLgr;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String nro;
|
protected String nro;
|
||||||
protected String xCpl;
|
protected String xCpl;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xBairro;
|
protected String xBairro;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String cMun;
|
protected String cMun;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xMun;
|
protected String xMun;
|
||||||
@XmlElement(name = "CEP")
|
@XmlElement(name = "CEP")
|
||||||
protected String cep;
|
protected String cep;
|
||||||
@XmlElement(name = "UF", required = true)
|
@XmlElement(name = "UF", required = true)
|
||||||
@XmlSchemaType(name = "string")
|
@XmlSchemaType(name = "string")
|
||||||
protected TUf uf;
|
protected TUf uf;
|
||||||
protected String cPais;
|
protected String cPais;
|
||||||
protected String xPais;
|
protected String xPais;
|
||||||
protected String fone;
|
protected String fone;
|
||||||
protected String email;
|
protected String email;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xLgr.
|
* Obtém o valor da propriedade xLgr.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXLgr() {
|
public String getXLgr() {
|
||||||
return xLgr;
|
return xLgr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xLgr.
|
* Define o valor da propriedade xLgr.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXLgr(String value) {
|
public void setXLgr(String value) {
|
||||||
this.xLgr = value;
|
this.xLgr = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade nro.
|
* Obtém o valor da propriedade nro.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getNro() {
|
public String getNro() {
|
||||||
return nro;
|
return nro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade nro.
|
* Define o valor da propriedade nro.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setNro(String value) {
|
public void setNro(String value) {
|
||||||
this.nro = value;
|
this.nro = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xCpl.
|
* Obtém o valor da propriedade xCpl.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXCpl() {
|
public String getXCpl() {
|
||||||
return xCpl;
|
return xCpl;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xCpl.
|
* Define o valor da propriedade xCpl.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXCpl(String value) {
|
public void setXCpl(String value) {
|
||||||
this.xCpl = value;
|
this.xCpl = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xBairro.
|
* Obtém o valor da propriedade xBairro.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXBairro() {
|
public String getXBairro() {
|
||||||
return xBairro;
|
return xBairro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xBairro.
|
* Define o valor da propriedade xBairro.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXBairro(String value) {
|
public void setXBairro(String value) {
|
||||||
this.xBairro = value;
|
this.xBairro = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cMun.
|
* Obtém o valor da propriedade cMun.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCMun() {
|
public String getCMun() {
|
||||||
return cMun;
|
return cMun;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cMun.
|
* Define o valor da propriedade cMun.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCMun(String value) {
|
public void setCMun(String value) {
|
||||||
this.cMun = value;
|
this.cMun = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xMun.
|
* Obtém o valor da propriedade xMun.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXMun() {
|
public String getXMun() {
|
||||||
return xMun;
|
return xMun;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xMun.
|
* Define o valor da propriedade xMun.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXMun(String value) {
|
public void setXMun(String value) {
|
||||||
this.xMun = value;
|
this.xMun = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cep.
|
* Obtém o valor da propriedade cep.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCEP() {
|
public String getCEP() {
|
||||||
return cep;
|
return cep;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cep.
|
* Define o valor da propriedade cep.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCEP(String value) {
|
public void setCEP(String value) {
|
||||||
this.cep = value;
|
this.cep = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade uf.
|
* Obtém o valor da propriedade uf.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link TUf }
|
* {@link TUf }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TUf getUF() {
|
public TUf getUF() {
|
||||||
return uf;
|
return uf;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade uf.
|
* Define o valor da propriedade uf.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link TUf }
|
* {@link TUf }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setUF(TUf value) {
|
public void setUF(TUf value) {
|
||||||
this.uf = value;
|
this.uf = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cPais.
|
* Obtém o valor da propriedade cPais.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCPais() {
|
public String getCPais() {
|
||||||
return cPais;
|
return cPais;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cPais.
|
* Define o valor da propriedade cPais.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCPais(String value) {
|
public void setCPais(String value) {
|
||||||
this.cPais = value;
|
this.cPais = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xPais.
|
* Obtém o valor da propriedade xPais.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXPais() {
|
public String getXPais() {
|
||||||
return xPais;
|
return xPais;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xPais.
|
* Define o valor da propriedade xPais.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXPais(String value) {
|
public void setXPais(String value) {
|
||||||
this.xPais = value;
|
this.xPais = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade fone.
|
* Obtém o valor da propriedade fone.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getFone() {
|
public String getFone() {
|
||||||
return fone;
|
return fone;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade fone.
|
* Define o valor da propriedade fone.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setFone(String value) {
|
public void setFone(String value) {
|
||||||
this.fone = value;
|
this.fone = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade email.
|
* Obtém o valor da propriedade email.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getEmail() {
|
public String getEmail() {
|
||||||
return email;
|
return email;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade email.
|
* Define o valor da propriedade email.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setEmail(String value) {
|
public void setEmail(String value) {
|
||||||
this.email = value;
|
this.email = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,127 +1,127 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tipo Pedido de concessão de autorização de BP-e
|
* Tipo Pedido de concessão de autorização de BP-e
|
||||||
*
|
*
|
||||||
* <p>Classe Java de TEnviBPe complex type.
|
* <p>Classe Java de TEnviBPe complex type.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="TEnviBPe">
|
* <complexType name="TEnviBPe">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="idLote" type="{http://www.portalfiscal.inf.br/bpe}TIdLote"/>
|
* <element name="idLote" type="{http://www.portalfiscal.inf.br/bpe}TIdLote"/>
|
||||||
* <element name="BPe" type="{http://www.portalfiscal.inf.br/bpe}TBPe"/>
|
* <element name="BPe" type="{http://www.portalfiscal.inf.br/bpe}TBPe"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerBPe" />
|
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerBPe" />
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "TEnviBPe", propOrder = {
|
@XmlType(name = "TEnviBPe", propOrder = {
|
||||||
"idLote",
|
"idLote",
|
||||||
"bPe"
|
"bPe"
|
||||||
})
|
})
|
||||||
public class TEnviBPe {
|
public class TEnviBPe {
|
||||||
|
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String idLote;
|
protected String idLote;
|
||||||
@XmlElement(name = "BPe", required = true)
|
@XmlElement(name = "BPe", required = true)
|
||||||
protected TBPe bPe;
|
protected TBPe bPe;
|
||||||
@XmlAttribute(name = "versao", required = true)
|
@XmlAttribute(name = "versao", required = true)
|
||||||
protected String versao;
|
protected String versao;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade idLote.
|
* Obtém o valor da propriedade idLote.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getIdLote() {
|
public String getIdLote() {
|
||||||
return idLote;
|
return idLote;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade idLote.
|
* Define o valor da propriedade idLote.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setIdLote(String value) {
|
public void setIdLote(String value) {
|
||||||
this.idLote = value;
|
this.idLote = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade bPe.
|
* Obtém o valor da propriedade bPe.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link TBPe }
|
* {@link TBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TBPe getBPe() {
|
public TBPe getBPe() {
|
||||||
return bPe;
|
return bPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade bPe.
|
* Define o valor da propriedade bPe.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link TBPe }
|
* {@link TBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setBPe(TBPe value) {
|
public void setBPe(TBPe value) {
|
||||||
this.bPe = value;
|
this.bPe = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade versao.
|
* Obtém o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getVersao() {
|
public String getVersao() {
|
||||||
return versao;
|
return versao;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade versao.
|
* Define o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setVersao(String value) {
|
public void setVersao(String value) {
|
||||||
this.versao = value;
|
this.versao = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,154 +1,154 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.29 às 06:11:44 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tipo procEvento
|
* Tipo procEvento
|
||||||
*
|
*
|
||||||
* <p>Classe Java de TProcEvento complex type.
|
* <p>Classe Java de TProcEvento complex type.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="TProcEvento">
|
* <complexType name="TProcEvento">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="eventoBPe" type="{http://www.portalfiscal.inf.br/bpe}TEvento"/>
|
* <element name="eventoBPe" type="{http://www.portalfiscal.inf.br/bpe}TEvento"/>
|
||||||
* <element name="retEventoBPe" type="{http://www.portalfiscal.inf.br/bpe}TRetEvento"/>
|
* <element name="retEventoBPe" type="{http://www.portalfiscal.inf.br/bpe}TRetEvento"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerEvento" />
|
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerEvento" />
|
||||||
* <attribute name="ipTransmissor" type="{http://www.portalfiscal.inf.br/bpe}TIPv4" />
|
* <attribute name="ipTransmissor" type="{http://www.portalfiscal.inf.br/bpe}TIPv4" />
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "TProcEvento", propOrder = {
|
@XmlType(name = "TProcEvento", propOrder = {
|
||||||
"eventoBPe",
|
"eventoBPe",
|
||||||
"retEventoBPe"
|
"retEventoBPe"
|
||||||
})
|
})
|
||||||
public class TProcEvento {
|
public class TProcEvento {
|
||||||
|
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected TEvento eventoBPe;
|
protected TEvento eventoBPe;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected TRetEvento retEventoBPe;
|
protected TRetEvento retEventoBPe;
|
||||||
@XmlAttribute(name = "versao", required = true)
|
@XmlAttribute(name = "versao", required = true)
|
||||||
protected String versao;
|
protected String versao;
|
||||||
@XmlAttribute(name = "ipTransmissor")
|
@XmlAttribute(name = "ipTransmissor")
|
||||||
protected String ipTransmissor;
|
protected String ipTransmissor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade eventoBPe.
|
* Obtém o valor da propriedade eventoBPe.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link TEvento }
|
* {@link TEvento }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TEvento getEventoBPe() {
|
public TEvento getEventoBPe() {
|
||||||
return eventoBPe;
|
return eventoBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade eventoBPe.
|
* Define o valor da propriedade eventoBPe.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link TEvento }
|
* {@link TEvento }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setEventoBPe(TEvento value) {
|
public void setEventoBPe(TEvento value) {
|
||||||
this.eventoBPe = value;
|
this.eventoBPe = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade retEventoBPe.
|
* Obtém o valor da propriedade retEventoBPe.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link TRetEvento }
|
* {@link TRetEvento }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TRetEvento getRetEventoBPe() {
|
public TRetEvento getRetEventoBPe() {
|
||||||
return retEventoBPe;
|
return retEventoBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade retEventoBPe.
|
* Define o valor da propriedade retEventoBPe.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link TRetEvento }
|
* {@link TRetEvento }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setRetEventoBPe(TRetEvento value) {
|
public void setRetEventoBPe(TRetEvento value) {
|
||||||
this.retEventoBPe = value;
|
this.retEventoBPe = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade versao.
|
* Obtém o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getVersao() {
|
public String getVersao() {
|
||||||
return versao;
|
return versao;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade versao.
|
* Define o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setVersao(String value) {
|
public void setVersao(String value) {
|
||||||
this.versao = value;
|
this.versao = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade ipTransmissor.
|
* Obtém o valor da propriedade ipTransmissor.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getIpTransmissor() {
|
public String getIpTransmissor() {
|
||||||
return ipTransmissor;
|
return ipTransmissor;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade ipTransmissor.
|
* Define o valor da propriedade ipTransmissor.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setIpTransmissor(String value) {
|
public void setIpTransmissor(String value) {
|
||||||
this.ipTransmissor = value;
|
this.ipTransmissor = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,436 +1,436 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlID;
|
import javax.xml.bind.annotation.XmlID;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
|
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
|
||||||
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tipo Protocolo de status resultado do processamento do BP-e (Modelo 63)
|
* Tipo Protocolo de status resultado do processamento do BP-e (Modelo 63)
|
||||||
*
|
*
|
||||||
* <p>Classe Java de TProtBPe complex type.
|
* <p>Classe Java de TProtBPe complex type.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="TProtBPe">
|
* <complexType name="TProtBPe">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="infProt">
|
* <element name="infProt">
|
||||||
* <complexType>
|
* <complexType>
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
||||||
* <element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
|
* <element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
|
||||||
* <element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
|
* <element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
|
||||||
* <element name="dhRecbto" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
|
* <element name="dhRecbto" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
|
||||||
* <element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
|
* <element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
|
||||||
* <element name="digVal" type="{http://www.w3.org/2000/09/xmldsig#}DigestValueType" minOccurs="0"/>
|
* <element name="digVal" type="{http://www.w3.org/2000/09/xmldsig#}DigestValueType" minOccurs="0"/>
|
||||||
* <element name="cStat">
|
* <element name="cStat">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TStat">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TStat">
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
|
* <element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
|
* <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/>
|
* <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerBPe" />
|
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerBPe" />
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "TProtBPe", propOrder = {
|
@XmlType(name = "TProtBPe", propOrder = {
|
||||||
"infProt",
|
"infProt",
|
||||||
// "signature"
|
// "signature"
|
||||||
})
|
})
|
||||||
public class TProtBPe {
|
public class TProtBPe {
|
||||||
|
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected TProtBPe.InfProt infProt;
|
protected TProtBPe.InfProt infProt;
|
||||||
// @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
|
// @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
|
||||||
// protected SignatureType signature;
|
// protected SignatureType signature;
|
||||||
@XmlAttribute(name = "versao", required = true)
|
@XmlAttribute(name = "versao", required = true)
|
||||||
protected String versao;
|
protected String versao;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade infProt.
|
* Obtém o valor da propriedade infProt.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link TProtBPe.InfProt }
|
* {@link TProtBPe.InfProt }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TProtBPe.InfProt getInfProt() {
|
public TProtBPe.InfProt getInfProt() {
|
||||||
return infProt;
|
return infProt;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade infProt.
|
* Define o valor da propriedade infProt.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link TProtBPe.InfProt }
|
* {@link TProtBPe.InfProt }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setInfProt(TProtBPe.InfProt value) {
|
public void setInfProt(TProtBPe.InfProt value) {
|
||||||
this.infProt = value;
|
this.infProt = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade signature.
|
* Obtém o valor da propriedade signature.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link SignatureType }
|
* {@link SignatureType }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
// public SignatureType getSignature() {
|
// public SignatureType getSignature() {
|
||||||
// return signature;
|
// return signature;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade signature.
|
* Define o valor da propriedade signature.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link SignatureType }
|
* {@link SignatureType }
|
||||||
*
|
*
|
||||||
// */
|
// */
|
||||||
// public void setSignature(SignatureType value) {
|
// public void setSignature(SignatureType value) {
|
||||||
// this.signature = value;
|
// this.signature = value;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade versao.
|
* Obtém o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getVersao() {
|
public String getVersao() {
|
||||||
return versao;
|
return versao;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade versao.
|
* Define o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setVersao(String value) {
|
public void setVersao(String value) {
|
||||||
this.versao = value;
|
this.versao = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Classe Java de anonymous complex type.
|
* <p>Classe Java de anonymous complex type.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType>
|
* <complexType>
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
||||||
* <element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
|
* <element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
|
||||||
* <element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
|
* <element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/>
|
||||||
* <element name="dhRecbto" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
|
* <element name="dhRecbto" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
|
||||||
* <element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
|
* <element name="nProt" type="{http://www.portalfiscal.inf.br/bpe}TProt" minOccurs="0"/>
|
||||||
* <element name="digVal" type="{http://www.w3.org/2000/09/xmldsig#}DigestValueType" minOccurs="0"/>
|
* <element name="digVal" type="{http://www.w3.org/2000/09/xmldsig#}DigestValueType" minOccurs="0"/>
|
||||||
* <element name="cStat">
|
* <element name="cStat">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TStat">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TStat">
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
|
* <element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
|
* <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "", propOrder = {
|
@XmlType(name = "", propOrder = {
|
||||||
"tpAmb",
|
"tpAmb",
|
||||||
"verAplic",
|
"verAplic",
|
||||||
"chBPe",
|
"chBPe",
|
||||||
"dhRecbto",
|
"dhRecbto",
|
||||||
"nProt",
|
"nProt",
|
||||||
/*"digVal",*/
|
/*"digVal",*/
|
||||||
"cStat",
|
"cStat",
|
||||||
"xMotivo"
|
"xMotivo"
|
||||||
})
|
})
|
||||||
public static class InfProt {
|
public static class InfProt {
|
||||||
|
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String tpAmb;
|
protected String tpAmb;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String verAplic;
|
protected String verAplic;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String chBPe;
|
protected String chBPe;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String dhRecbto;
|
protected String dhRecbto;
|
||||||
protected String nProt;
|
protected String nProt;
|
||||||
// protected byte[] digVal;
|
// protected byte[] digVal;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String cStat;
|
protected String cStat;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xMotivo;
|
protected String xMotivo;
|
||||||
@XmlAttribute(name = "Id")
|
@XmlAttribute(name = "Id")
|
||||||
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
|
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
|
||||||
@XmlID
|
@XmlID
|
||||||
@XmlSchemaType(name = "ID")
|
@XmlSchemaType(name = "ID")
|
||||||
protected String id;
|
protected String id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade tpAmb.
|
* Obtém o valor da propriedade tpAmb.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTpAmb() {
|
public String getTpAmb() {
|
||||||
return tpAmb;
|
return tpAmb;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade tpAmb.
|
* Define o valor da propriedade tpAmb.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTpAmb(String value) {
|
public void setTpAmb(String value) {
|
||||||
this.tpAmb = value;
|
this.tpAmb = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade verAplic.
|
* Obtém o valor da propriedade verAplic.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getVerAplic() {
|
public String getVerAplic() {
|
||||||
return verAplic;
|
return verAplic;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade verAplic.
|
* Define o valor da propriedade verAplic.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setVerAplic(String value) {
|
public void setVerAplic(String value) {
|
||||||
this.verAplic = value;
|
this.verAplic = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade chBPe.
|
* Obtém o valor da propriedade chBPe.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getChBPe() {
|
public String getChBPe() {
|
||||||
return chBPe;
|
return chBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade chBPe.
|
* Define o valor da propriedade chBPe.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setChBPe(String value) {
|
public void setChBPe(String value) {
|
||||||
this.chBPe = value;
|
this.chBPe = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade dhRecbto.
|
* Obtém o valor da propriedade dhRecbto.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDhRecbto() {
|
public String getDhRecbto() {
|
||||||
return dhRecbto;
|
return dhRecbto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade dhRecbto.
|
* Define o valor da propriedade dhRecbto.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDhRecbto(String value) {
|
public void setDhRecbto(String value) {
|
||||||
this.dhRecbto = value;
|
this.dhRecbto = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade nProt.
|
* Obtém o valor da propriedade nProt.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getNProt() {
|
public String getNProt() {
|
||||||
return nProt;
|
return nProt;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade nProt.
|
* Define o valor da propriedade nProt.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setNProt(String value) {
|
public void setNProt(String value) {
|
||||||
this.nProt = value;
|
this.nProt = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
// /**
|
// /**
|
||||||
// * Obtém o valor da propriedade digVal.
|
// * Obtém o valor da propriedade digVal.
|
||||||
// *
|
// *
|
||||||
// * @return
|
// * @return
|
||||||
// * possible object is
|
// * possible object is
|
||||||
// * byte[]
|
// * byte[]
|
||||||
// */
|
// */
|
||||||
// public byte[] getDigVal() {
|
// public byte[] getDigVal() {
|
||||||
// return digVal;
|
// return digVal;
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
// /**
|
// /**
|
||||||
// * Define o valor da propriedade digVal.
|
// * Define o valor da propriedade digVal.
|
||||||
// *
|
// *
|
||||||
// * @param value
|
// * @param value
|
||||||
// * allowed object is
|
// * allowed object is
|
||||||
// * byte[]
|
// * byte[]
|
||||||
// */
|
// */
|
||||||
// public void setDigVal(byte[] value) {
|
// public void setDigVal(byte[] value) {
|
||||||
// this.digVal = value;
|
// this.digVal = value;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cStat.
|
* Obtém o valor da propriedade cStat.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCStat() {
|
public String getCStat() {
|
||||||
return cStat;
|
return cStat;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cStat.
|
* Define o valor da propriedade cStat.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCStat(String value) {
|
public void setCStat(String value) {
|
||||||
this.cStat = value;
|
this.cStat = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xMotivo.
|
* Obtém o valor da propriedade xMotivo.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXMotivo() {
|
public String getXMotivo() {
|
||||||
return xMotivo;
|
return xMotivo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xMotivo.
|
* Define o valor da propriedade xMotivo.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXMotivo(String value) {
|
public void setXMotivo(String value) {
|
||||||
this.xMotivo = value;
|
this.xMotivo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade id.
|
* Obtém o valor da propriedade id.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getId() {
|
public String getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade id.
|
* Define o valor da propriedade id.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setId(String value) {
|
public void setId(String value) {
|
||||||
this.id = value;
|
this.id = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,240 +1,240 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tipo Retorno do Pedido de autorização de BP-e (Modelo 63)
|
* Tipo Retorno do Pedido de autorização de BP-e (Modelo 63)
|
||||||
*
|
*
|
||||||
* <p>Classe Java de TRetBPe complex type.
|
* <p>Classe Java de TRetBPe complex type.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="TRetBPe">
|
* <complexType name="TRetBPe">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
||||||
* <element name="cUF" type="{http://www.portalfiscal.inf.br/bpe}TCodUfIBGE"/>
|
* <element name="cUF" type="{http://www.portalfiscal.inf.br/bpe}TCodUfIBGE"/>
|
||||||
* <element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
|
* <element name="verAplic" type="{http://www.portalfiscal.inf.br/bpe}TVerAplic"/>
|
||||||
* <element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
|
* <element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
|
||||||
* <element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
|
* <element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
|
||||||
* <element name="protBPe" type="{http://www.portalfiscal.inf.br/bpe}TProtBPe" minOccurs="0"/>
|
* <element name="protBPe" type="{http://www.portalfiscal.inf.br/bpe}TProtBPe" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerBPe" />
|
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerBPe" />
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlRootElement(name = "retBPe")
|
@XmlRootElement(name = "retBPe")
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "retBPe", propOrder = {
|
@XmlType(name = "retBPe", propOrder = {
|
||||||
"tpAmb",
|
"tpAmb",
|
||||||
"cuf",
|
"cuf",
|
||||||
"verAplic",
|
"verAplic",
|
||||||
"cStat",
|
"cStat",
|
||||||
"xMotivo",
|
"xMotivo",
|
||||||
"protBPe"
|
"protBPe"
|
||||||
})
|
})
|
||||||
public class TRetBPe {
|
public class TRetBPe {
|
||||||
|
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String tpAmb;
|
protected String tpAmb;
|
||||||
@XmlElement(name = "cUF", required = true)
|
@XmlElement(name = "cUF", required = true)
|
||||||
protected String cuf;
|
protected String cuf;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String verAplic;
|
protected String verAplic;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String cStat;
|
protected String cStat;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xMotivo;
|
protected String xMotivo;
|
||||||
protected TProtBPe protBPe;
|
protected TProtBPe protBPe;
|
||||||
@XmlAttribute(name = "versao", required = true)
|
@XmlAttribute(name = "versao", required = true)
|
||||||
protected String versao;
|
protected String versao;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade tpAmb.
|
* Obtém o valor da propriedade tpAmb.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTpAmb() {
|
public String getTpAmb() {
|
||||||
return tpAmb;
|
return tpAmb;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade tpAmb.
|
* Define o valor da propriedade tpAmb.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTpAmb(String value) {
|
public void setTpAmb(String value) {
|
||||||
this.tpAmb = value;
|
this.tpAmb = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cuf.
|
* Obtém o valor da propriedade cuf.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCUF() {
|
public String getCUF() {
|
||||||
return cuf;
|
return cuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cuf.
|
* Define o valor da propriedade cuf.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCUF(String value) {
|
public void setCUF(String value) {
|
||||||
this.cuf = value;
|
this.cuf = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade verAplic.
|
* Obtém o valor da propriedade verAplic.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getVerAplic() {
|
public String getVerAplic() {
|
||||||
return verAplic;
|
return verAplic;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade verAplic.
|
* Define o valor da propriedade verAplic.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setVerAplic(String value) {
|
public void setVerAplic(String value) {
|
||||||
this.verAplic = value;
|
this.verAplic = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cStat.
|
* Obtém o valor da propriedade cStat.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCStat() {
|
public String getCStat() {
|
||||||
return cStat;
|
return cStat;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cStat.
|
* Define o valor da propriedade cStat.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCStat(String value) {
|
public void setCStat(String value) {
|
||||||
this.cStat = value;
|
this.cStat = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xMotivo.
|
* Obtém o valor da propriedade xMotivo.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXMotivo() {
|
public String getXMotivo() {
|
||||||
return xMotivo;
|
return xMotivo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xMotivo.
|
* Define o valor da propriedade xMotivo.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXMotivo(String value) {
|
public void setXMotivo(String value) {
|
||||||
this.xMotivo = value;
|
this.xMotivo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade protBPe.
|
* Obtém o valor da propriedade protBPe.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link TProtBPe }
|
* {@link TProtBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TProtBPe getProtBPe() {
|
public TProtBPe getProtBPe() {
|
||||||
return protBPe;
|
return protBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade protBPe.
|
* Define o valor da propriedade protBPe.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link TProtBPe }
|
* {@link TProtBPe }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setProtBPe(TProtBPe value) {
|
public void setProtBPe(TProtBPe value) {
|
||||||
this.protBPe = value;
|
this.protBPe = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade versao.
|
* Obtém o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getVersao() {
|
public String getVersao() {
|
||||||
return versao;
|
return versao;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade versao.
|
* Define o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setVersao(String value) {
|
public void setVersao(String value) {
|
||||||
this.versao = value;
|
this.versao = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,343 +1,343 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.07 às 09:45:52 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import java.math.BigInteger;
|
import java.math.BigInteger;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tipo Resultado da Consulta do Status do Serviço BP-e
|
* Tipo Resultado da Consulta do Status do Serviço BP-e
|
||||||
*
|
*
|
||||||
* <p>Classe Java de TRetConsStatServ complex type.
|
* <p>Classe Java de TRetConsStatServ complex type.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="TRetConsStatServ">
|
* <complexType name="TRetConsStatServ">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/>
|
||||||
* <element name="verAplic">
|
* <element name="verAplic">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TVerAplic">
|
* <restriction base="{http://www.portalfiscal.inf.br/bpe}TVerAplic">
|
||||||
* <whiteSpace value="collapse"/>
|
* <whiteSpace value="collapse"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
|
* <element name="cStat" type="{http://www.portalfiscal.inf.br/bpe}TStat"/>
|
||||||
* <element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
|
* <element name="xMotivo" type="{http://www.portalfiscal.inf.br/bpe}TMotivo"/>
|
||||||
* <element name="cUF" type="{http://www.portalfiscal.inf.br/bpe}TCodUfIBGE"/>
|
* <element name="cUF" type="{http://www.portalfiscal.inf.br/bpe}TCodUfIBGE"/>
|
||||||
* <element name="dhRecbto" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
|
* <element name="dhRecbto" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC"/>
|
||||||
* <element name="tMed" minOccurs="0">
|
* <element name="tMed" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
|
||||||
* <pattern value="[0-9]{1,4}"/>
|
* <pattern value="[0-9]{1,4}"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="dhRetorno" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC" minOccurs="0"/>
|
* <element name="dhRetorno" type="{http://www.portalfiscal.inf.br/bpe}TDateTimeUTC" minOccurs="0"/>
|
||||||
* <element name="xObs" minOccurs="0">
|
* <element name="xObs" minOccurs="0">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
* <minLength value="1"/>
|
* <minLength value="1"/>
|
||||||
* <maxLength value="255"/>
|
* <maxLength value="255"/>
|
||||||
* <whiteSpace value="collapse"/>
|
* <whiteSpace value="collapse"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerConsStat" />
|
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerConsStat" />
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlRootElement(name = "retConsStatServBPe")
|
@XmlRootElement(name = "retConsStatServBPe")
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "retConsStatServBPe", propOrder = {
|
@XmlType(name = "retConsStatServBPe", propOrder = {
|
||||||
"tpAmb",
|
"tpAmb",
|
||||||
"verAplic",
|
"verAplic",
|
||||||
"cStat",
|
"cStat",
|
||||||
"xMotivo",
|
"xMotivo",
|
||||||
"cuf",
|
"cuf",
|
||||||
"dhRecbto",
|
"dhRecbto",
|
||||||
"tMed",
|
"tMed",
|
||||||
"dhRetorno",
|
"dhRetorno",
|
||||||
"xObs"
|
"xObs"
|
||||||
})
|
})
|
||||||
public class TRetConsStatServ {
|
public class TRetConsStatServ {
|
||||||
|
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String tpAmb;
|
protected String tpAmb;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String verAplic;
|
protected String verAplic;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String cStat;
|
protected String cStat;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String xMotivo;
|
protected String xMotivo;
|
||||||
@XmlElement(name = "cUF", required = true)
|
@XmlElement(name = "cUF", required = true)
|
||||||
protected String cuf;
|
protected String cuf;
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected String dhRecbto;
|
protected String dhRecbto;
|
||||||
protected BigInteger tMed;
|
protected BigInteger tMed;
|
||||||
protected String dhRetorno;
|
protected String dhRetorno;
|
||||||
protected String xObs;
|
protected String xObs;
|
||||||
@XmlAttribute(name = "versao", required = true)
|
@XmlAttribute(name = "versao", required = true)
|
||||||
protected String versao;
|
protected String versao;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade tpAmb.
|
* Obtém o valor da propriedade tpAmb.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTpAmb() {
|
public String getTpAmb() {
|
||||||
return tpAmb;
|
return tpAmb;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade tpAmb.
|
* Define o valor da propriedade tpAmb.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTpAmb(String value) {
|
public void setTpAmb(String value) {
|
||||||
this.tpAmb = value;
|
this.tpAmb = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade verAplic.
|
* Obtém o valor da propriedade verAplic.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getVerAplic() {
|
public String getVerAplic() {
|
||||||
return verAplic;
|
return verAplic;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade verAplic.
|
* Define o valor da propriedade verAplic.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setVerAplic(String value) {
|
public void setVerAplic(String value) {
|
||||||
this.verAplic = value;
|
this.verAplic = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cStat.
|
* Obtém o valor da propriedade cStat.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCStat() {
|
public String getCStat() {
|
||||||
return cStat;
|
return cStat;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cStat.
|
* Define o valor da propriedade cStat.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCStat(String value) {
|
public void setCStat(String value) {
|
||||||
this.cStat = value;
|
this.cStat = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xMotivo.
|
* Obtém o valor da propriedade xMotivo.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXMotivo() {
|
public String getXMotivo() {
|
||||||
return xMotivo;
|
return xMotivo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xMotivo.
|
* Define o valor da propriedade xMotivo.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXMotivo(String value) {
|
public void setXMotivo(String value) {
|
||||||
this.xMotivo = value;
|
this.xMotivo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade cuf.
|
* Obtém o valor da propriedade cuf.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCUF() {
|
public String getCUF() {
|
||||||
return cuf;
|
return cuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade cuf.
|
* Define o valor da propriedade cuf.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCUF(String value) {
|
public void setCUF(String value) {
|
||||||
this.cuf = value;
|
this.cuf = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade dhRecbto.
|
* Obtém o valor da propriedade dhRecbto.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDhRecbto() {
|
public String getDhRecbto() {
|
||||||
return dhRecbto;
|
return dhRecbto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade dhRecbto.
|
* Define o valor da propriedade dhRecbto.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDhRecbto(String value) {
|
public void setDhRecbto(String value) {
|
||||||
this.dhRecbto = value;
|
this.dhRecbto = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade tMed.
|
* Obtém o valor da propriedade tMed.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link BigInteger }
|
* {@link BigInteger }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public BigInteger getTMed() {
|
public BigInteger getTMed() {
|
||||||
return tMed;
|
return tMed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade tMed.
|
* Define o valor da propriedade tMed.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link BigInteger }
|
* {@link BigInteger }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTMed(BigInteger value) {
|
public void setTMed(BigInteger value) {
|
||||||
this.tMed = value;
|
this.tMed = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade dhRetorno.
|
* Obtém o valor da propriedade dhRetorno.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDhRetorno() {
|
public String getDhRetorno() {
|
||||||
return dhRetorno;
|
return dhRetorno;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade dhRetorno.
|
* Define o valor da propriedade dhRetorno.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDhRetorno(String value) {
|
public void setDhRetorno(String value) {
|
||||||
this.dhRetorno = value;
|
this.dhRetorno = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade xObs.
|
* Obtém o valor da propriedade xObs.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getXObs() {
|
public String getXObs() {
|
||||||
return xObs;
|
return xObs;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade xObs.
|
* Define o valor da propriedade xObs.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setXObs(String value) {
|
public void setXObs(String value) {
|
||||||
this.xObs = value;
|
this.xObs = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtém o valor da propriedade versao.
|
* Obtém o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getVersao() {
|
public String getVersao() {
|
||||||
return versao;
|
return versao;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define o valor da propriedade versao.
|
* Define o valor da propriedade versao.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setVersao(String value) {
|
public void setVersao(String value) {
|
||||||
this.versao = value;
|
this.versao = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,98 +1,98 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlEnum;
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Classe Java de TUf.
|
* <p>Classe Java de TUf.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
* <p>
|
* <p>
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="TUf">
|
* <simpleType name="TUf">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
* <whiteSpace value="preserve"/>
|
* <whiteSpace value="preserve"/>
|
||||||
* <enumeration value="AC"/>
|
* <enumeration value="AC"/>
|
||||||
* <enumeration value="AL"/>
|
* <enumeration value="AL"/>
|
||||||
* <enumeration value="AM"/>
|
* <enumeration value="AM"/>
|
||||||
* <enumeration value="AP"/>
|
* <enumeration value="AP"/>
|
||||||
* <enumeration value="BA"/>
|
* <enumeration value="BA"/>
|
||||||
* <enumeration value="CE"/>
|
* <enumeration value="CE"/>
|
||||||
* <enumeration value="DF"/>
|
* <enumeration value="DF"/>
|
||||||
* <enumeration value="ES"/>
|
* <enumeration value="ES"/>
|
||||||
* <enumeration value="GO"/>
|
* <enumeration value="GO"/>
|
||||||
* <enumeration value="MA"/>
|
* <enumeration value="MA"/>
|
||||||
* <enumeration value="MG"/>
|
* <enumeration value="MG"/>
|
||||||
* <enumeration value="MS"/>
|
* <enumeration value="MS"/>
|
||||||
* <enumeration value="MT"/>
|
* <enumeration value="MT"/>
|
||||||
* <enumeration value="PA"/>
|
* <enumeration value="PA"/>
|
||||||
* <enumeration value="PB"/>
|
* <enumeration value="PB"/>
|
||||||
* <enumeration value="PE"/>
|
* <enumeration value="PE"/>
|
||||||
* <enumeration value="PI"/>
|
* <enumeration value="PI"/>
|
||||||
* <enumeration value="PR"/>
|
* <enumeration value="PR"/>
|
||||||
* <enumeration value="RJ"/>
|
* <enumeration value="RJ"/>
|
||||||
* <enumeration value="RN"/>
|
* <enumeration value="RN"/>
|
||||||
* <enumeration value="RO"/>
|
* <enumeration value="RO"/>
|
||||||
* <enumeration value="RR"/>
|
* <enumeration value="RR"/>
|
||||||
* <enumeration value="RS"/>
|
* <enumeration value="RS"/>
|
||||||
* <enumeration value="SC"/>
|
* <enumeration value="SC"/>
|
||||||
* <enumeration value="SE"/>
|
* <enumeration value="SE"/>
|
||||||
* <enumeration value="SP"/>
|
* <enumeration value="SP"/>
|
||||||
* <enumeration value="TO"/>
|
* <enumeration value="TO"/>
|
||||||
* <enumeration value="EX"/>
|
* <enumeration value="EX"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlType(name = "TUf")
|
@XmlType(name = "TUf")
|
||||||
@XmlEnum
|
@XmlEnum
|
||||||
public enum TUf {
|
public enum TUf {
|
||||||
|
|
||||||
AC,
|
AC,
|
||||||
AL,
|
AL,
|
||||||
AM,
|
AM,
|
||||||
AP,
|
AP,
|
||||||
BA,
|
BA,
|
||||||
CE,
|
CE,
|
||||||
DF,
|
DF,
|
||||||
ES,
|
ES,
|
||||||
GO,
|
GO,
|
||||||
MA,
|
MA,
|
||||||
MG,
|
MG,
|
||||||
MS,
|
MS,
|
||||||
MT,
|
MT,
|
||||||
PA,
|
PA,
|
||||||
PB,
|
PB,
|
||||||
PE,
|
PE,
|
||||||
PI,
|
PI,
|
||||||
PR,
|
PR,
|
||||||
RJ,
|
RJ,
|
||||||
RN,
|
RN,
|
||||||
RO,
|
RO,
|
||||||
RR,
|
RR,
|
||||||
RS,
|
RS,
|
||||||
SC,
|
SC,
|
||||||
SE,
|
SE,
|
||||||
SP,
|
SP,
|
||||||
TO,
|
TO,
|
||||||
EX;
|
EX;
|
||||||
|
|
||||||
public String value() {
|
public String value() {
|
||||||
return name();
|
return name();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TUf fromValue(String v) {
|
public static TUf fromValue(String v) {
|
||||||
return valueOf(v);
|
return valueOf(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,96 +1,96 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.14 às 03:08:29 PM BRT
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlEnum;
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Classe Java de TUf_sem_EX.
|
* <p>Classe Java de TUf_sem_EX.
|
||||||
*
|
*
|
||||||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
|
||||||
* <p>
|
* <p>
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="TUf_sem_EX">
|
* <simpleType name="TUf_sem_EX">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
* <whiteSpace value="preserve"/>
|
* <whiteSpace value="preserve"/>
|
||||||
* <enumeration value="AC"/>
|
* <enumeration value="AC"/>
|
||||||
* <enumeration value="AL"/>
|
* <enumeration value="AL"/>
|
||||||
* <enumeration value="AM"/>
|
* <enumeration value="AM"/>
|
||||||
* <enumeration value="AP"/>
|
* <enumeration value="AP"/>
|
||||||
* <enumeration value="BA"/>
|
* <enumeration value="BA"/>
|
||||||
* <enumeration value="CE"/>
|
* <enumeration value="CE"/>
|
||||||
* <enumeration value="DF"/>
|
* <enumeration value="DF"/>
|
||||||
* <enumeration value="ES"/>
|
* <enumeration value="ES"/>
|
||||||
* <enumeration value="GO"/>
|
* <enumeration value="GO"/>
|
||||||
* <enumeration value="MA"/>
|
* <enumeration value="MA"/>
|
||||||
* <enumeration value="MG"/>
|
* <enumeration value="MG"/>
|
||||||
* <enumeration value="MS"/>
|
* <enumeration value="MS"/>
|
||||||
* <enumeration value="MT"/>
|
* <enumeration value="MT"/>
|
||||||
* <enumeration value="PA"/>
|
* <enumeration value="PA"/>
|
||||||
* <enumeration value="PB"/>
|
* <enumeration value="PB"/>
|
||||||
* <enumeration value="PE"/>
|
* <enumeration value="PE"/>
|
||||||
* <enumeration value="PI"/>
|
* <enumeration value="PI"/>
|
||||||
* <enumeration value="PR"/>
|
* <enumeration value="PR"/>
|
||||||
* <enumeration value="RJ"/>
|
* <enumeration value="RJ"/>
|
||||||
* <enumeration value="RN"/>
|
* <enumeration value="RN"/>
|
||||||
* <enumeration value="RO"/>
|
* <enumeration value="RO"/>
|
||||||
* <enumeration value="RR"/>
|
* <enumeration value="RR"/>
|
||||||
* <enumeration value="RS"/>
|
* <enumeration value="RS"/>
|
||||||
* <enumeration value="SC"/>
|
* <enumeration value="SC"/>
|
||||||
* <enumeration value="SE"/>
|
* <enumeration value="SE"/>
|
||||||
* <enumeration value="SP"/>
|
* <enumeration value="SP"/>
|
||||||
* <enumeration value="TO"/>
|
* <enumeration value="TO"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlType(name = "TUf_sem_EX")
|
@XmlType(name = "TUf_sem_EX")
|
||||||
@XmlEnum
|
@XmlEnum
|
||||||
public enum TUfSemEX {
|
public enum TUfSemEX {
|
||||||
|
|
||||||
AC,
|
AC,
|
||||||
AL,
|
AL,
|
||||||
AM,
|
AM,
|
||||||
AP,
|
AP,
|
||||||
BA,
|
BA,
|
||||||
CE,
|
CE,
|
||||||
DF,
|
DF,
|
||||||
ES,
|
ES,
|
||||||
GO,
|
GO,
|
||||||
MA,
|
MA,
|
||||||
MG,
|
MG,
|
||||||
MS,
|
MS,
|
||||||
MT,
|
MT,
|
||||||
PA,
|
PA,
|
||||||
PB,
|
PB,
|
||||||
PE,
|
PE,
|
||||||
PI,
|
PI,
|
||||||
PR,
|
PR,
|
||||||
RJ,
|
RJ,
|
||||||
RN,
|
RN,
|
||||||
RO,
|
RO,
|
||||||
RR,
|
RR,
|
||||||
RS,
|
RS,
|
||||||
SC,
|
SC,
|
||||||
SE,
|
SE,
|
||||||
SP,
|
SP,
|
||||||
TO;
|
TO;
|
||||||
|
|
||||||
public String value() {
|
public String value() {
|
||||||
return name();
|
return name();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TUfSemEX fromValue(String v) {
|
public static TUfSemEX fromValue(String v) {
|
||||||
return valueOf(v);
|
return valueOf(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,47 +1,47 @@
|
||||||
package br.inf.portalfiscal.bpe.evento;
|
package br.inf.portalfiscal.bpe.evento;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "TEventoMsg", propOrder = {
|
@XmlType(name = "TEventoMsg", propOrder = {
|
||||||
"eventoBPe",
|
"eventoBPe",
|
||||||
"xmlns"
|
"xmlns"
|
||||||
})
|
})
|
||||||
@XmlRootElement(name = "bpeDadosMsg")
|
@XmlRootElement(name = "bpeDadosMsg")
|
||||||
public class TEventoMsg {
|
public class TEventoMsg {
|
||||||
@XmlElement(required = true)
|
@XmlElement(required = true)
|
||||||
protected TEvento eventoBPe;
|
protected TEvento eventoBPe;
|
||||||
|
|
||||||
@XmlAttribute(name = "xmlns", required = true)
|
@XmlAttribute(name = "xmlns", required = true)
|
||||||
protected String xmlns;
|
protected String xmlns;
|
||||||
|
|
||||||
public TEventoMsg() {
|
public TEventoMsg() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
public TEventoMsg(TEvento eventoBPe) {
|
public TEventoMsg(TEvento eventoBPe) {
|
||||||
super();
|
super();
|
||||||
this.eventoBPe = eventoBPe;
|
this.eventoBPe = eventoBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
public TEvento getEventoBPe() {
|
public TEvento getEventoBPe() {
|
||||||
return eventoBPe;
|
return eventoBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEventoBPe(TEvento eventoBPe) {
|
public void setEventoBPe(TEvento eventoBPe) {
|
||||||
this.eventoBPe = eventoBPe;
|
this.eventoBPe = eventoBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getXmlns() {
|
public String getXmlns() {
|
||||||
return xmlns;
|
return xmlns;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setXmlns(String xmlns) {
|
public void setXmlns(String xmlns) {
|
||||||
this.xmlns = xmlns;
|
this.xmlns = xmlns;
|
||||||
}
|
}
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1 +1 @@
|
||||||
package br.inf.portalfiscal.bpe.evento;
|
package br.inf.portalfiscal.bpe.evento;
|
|
@ -1,23 +1,23 @@
|
||||||
//
|
//
|
||||||
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
|
// 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>
|
// 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.
|
// 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
|
// Gerado em: 2017.08.23 às 03:05:57 PM BRT
|
||||||
//
|
//
|
||||||
//@XmlSchema(
|
//@XmlSchema(
|
||||||
// namespace="",
|
// namespace="",
|
||||||
// // If qualified namespace will be added to all elements
|
// // If qualified namespace will be added to all elements
|
||||||
// elementFormDefault = XmlNsForm.QUALIFIED,
|
// elementFormDefault = XmlNsForm.QUALIFIED,
|
||||||
// // If qualifies namespace will be added to all attributes
|
// // If qualifies namespace will be added to all attributes
|
||||||
// attributeFormDefault = XmlNsForm.UNQUALIFIED,
|
// attributeFormDefault = XmlNsForm.UNQUALIFIED,
|
||||||
// xmlns = {
|
// xmlns = {
|
||||||
// @XmlNs(prefix = "bpe", namespaceURI = "http://www.portalfiscal.inf.br/bpe"),
|
// @XmlNs(prefix = "bpe", namespaceURI = "http://www.portalfiscal.inf.br/bpe"),
|
||||||
//// @XmlNs(prefix = "xsi", 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)
|
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.portalfiscal.inf.br/bpe", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
|
||||||
package br.inf.portalfiscal.bpe;
|
package br.inf.portalfiscal.bpe;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlNs;
|
import javax.xml.bind.annotation.XmlNs;
|
||||||
import javax.xml.bind.annotation.XmlNsForm;
|
import javax.xml.bind.annotation.XmlNsForm;
|
||||||
import javax.xml.bind.annotation.XmlSchema;
|
import javax.xml.bind.annotation.XmlSchema;
|
|
@ -1,261 +1,261 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.jws.WebMethod;
|
import javax.jws.WebMethod;
|
||||||
import javax.jws.WebParam;
|
import javax.jws.WebParam;
|
||||||
import javax.jws.WebResult;
|
import javax.jws.WebResult;
|
||||||
import javax.jws.WebService;
|
import javax.jws.WebService;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.ws.RequestWrapper;
|
import javax.xml.ws.RequestWrapper;
|
||||||
import javax.xml.ws.ResponseWrapper;
|
import javax.xml.ws.ResponseWrapper;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by the JAX-WS RI.
|
* This class was generated by the JAX-WS RI.
|
||||||
* JAX-WS RI 2.1.6 in JDK 6
|
* JAX-WS RI 2.1.6 in JDK 6
|
||||||
* Generated source version: 2.1
|
* Generated source version: 2.1
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@WebService(name = "BilheteService", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/")
|
@WebService(name = "BilheteService", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/")
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
ObjectFactory.class
|
ObjectFactory.class
|
||||||
})
|
})
|
||||||
public interface BilheteService {
|
public interface BilheteService {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param dataFim
|
* @param dataFim
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @param agenciaInicio
|
* @param agenciaInicio
|
||||||
* @param fiscal
|
* @param fiscal
|
||||||
* @param dataInicio
|
* @param dataInicio
|
||||||
* @param codEmpresa
|
* @param codEmpresa
|
||||||
* @param agenciaFim
|
* @param agenciaFim
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "buscarBilhetes", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarBilhetes")
|
@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")
|
@ResponseWrapper(localName = "buscarBilhetesResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarBilhetesResponse")
|
||||||
public List<ExportaIntegracaoWS> buscarBilhetes(
|
public List<ExportaIntegracaoWS> buscarBilhetes(
|
||||||
@WebParam(name = "dataInicio", targetNamespace = "")
|
@WebParam(name = "dataInicio", targetNamespace = "")
|
||||||
String dataInicio,
|
String dataInicio,
|
||||||
@WebParam(name = "dataFim", targetNamespace = "")
|
@WebParam(name = "dataFim", targetNamespace = "")
|
||||||
String dataFim,
|
String dataFim,
|
||||||
@WebParam(name = "agenciaInicio", targetNamespace = "")
|
@WebParam(name = "agenciaInicio", targetNamespace = "")
|
||||||
String agenciaInicio,
|
String agenciaInicio,
|
||||||
@WebParam(name = "agenciaFim", targetNamespace = "")
|
@WebParam(name = "agenciaFim", targetNamespace = "")
|
||||||
String agenciaFim,
|
String agenciaFim,
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo,
|
Integer codEmpresaGrupo,
|
||||||
@WebParam(name = "codEmpresa", targetNamespace = "")
|
@WebParam(name = "codEmpresa", targetNamespace = "")
|
||||||
String codEmpresa,
|
String codEmpresa,
|
||||||
@WebParam(name = "fiscal", targetNamespace = "")
|
@WebParam(name = "fiscal", targetNamespace = "")
|
||||||
String fiscal);
|
String fiscal);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param dataFim
|
* @param dataFim
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @param agenciaInicio
|
* @param agenciaInicio
|
||||||
* @param fiscal
|
* @param fiscal
|
||||||
* @param dataInicio
|
* @param dataInicio
|
||||||
* @param codEmpresa
|
* @param codEmpresa
|
||||||
* @param agenciaFim
|
* @param agenciaFim
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "buscarBilhetesInconsistente", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarBilhetesInconsistente")
|
@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")
|
@ResponseWrapper(localName = "buscarBilhetesInconsistenteResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarBilhetesInconsistenteResponse")
|
||||||
public List<ExportaIntegracaoWS> buscarBilhetesInconsistente(
|
public List<ExportaIntegracaoWS> buscarBilhetesInconsistente(
|
||||||
@WebParam(name = "dataInicio", targetNamespace = "")
|
@WebParam(name = "dataInicio", targetNamespace = "")
|
||||||
String dataInicio,
|
String dataInicio,
|
||||||
@WebParam(name = "dataFim", targetNamespace = "")
|
@WebParam(name = "dataFim", targetNamespace = "")
|
||||||
String dataFim,
|
String dataFim,
|
||||||
@WebParam(name = "agenciaInicio", targetNamespace = "")
|
@WebParam(name = "agenciaInicio", targetNamespace = "")
|
||||||
String agenciaInicio,
|
String agenciaInicio,
|
||||||
@WebParam(name = "agenciaFim", targetNamespace = "")
|
@WebParam(name = "agenciaFim", targetNamespace = "")
|
||||||
String agenciaFim,
|
String agenciaFim,
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo,
|
Integer codEmpresaGrupo,
|
||||||
@WebParam(name = "codEmpresa", targetNamespace = "")
|
@WebParam(name = "codEmpresa", targetNamespace = "")
|
||||||
String codEmpresa,
|
String codEmpresa,
|
||||||
@WebParam(name = "fiscal", targetNamespace = "")
|
@WebParam(name = "fiscal", targetNamespace = "")
|
||||||
String fiscal);
|
String fiscal);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @param agenciaInicio
|
* @param agenciaInicio
|
||||||
* @param codEmpresa
|
* @param codEmpresa
|
||||||
* @param agenciaFim
|
* @param agenciaFim
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadBilheteiroWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadBilheteiroWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "cadBilheteiro", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadBilheteiro")
|
@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")
|
@ResponseWrapper(localName = "cadBilheteiroResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadBilheteiroResponse")
|
||||||
public List<ExportaIntegracaoCadBilheteiroWS> cadBilheteiro(
|
public List<ExportaIntegracaoCadBilheteiroWS> cadBilheteiro(
|
||||||
@WebParam(name = "agenciaInicio", targetNamespace = "")
|
@WebParam(name = "agenciaInicio", targetNamespace = "")
|
||||||
String agenciaInicio,
|
String agenciaInicio,
|
||||||
@WebParam(name = "agenciaFim", targetNamespace = "")
|
@WebParam(name = "agenciaFim", targetNamespace = "")
|
||||||
String agenciaFim,
|
String agenciaFim,
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo,
|
Integer codEmpresaGrupo,
|
||||||
@WebParam(name = "codEmpresa", targetNamespace = "")
|
@WebParam(name = "codEmpresa", targetNamespace = "")
|
||||||
String codEmpresa);
|
String codEmpresa);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadEstadoWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadEstadoWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "cadEstado", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadEstado")
|
@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")
|
@ResponseWrapper(localName = "cadEstadoResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadEstadoResponse")
|
||||||
public List<ExportaIntegracaoCadEstadoWS> cadEstado(
|
public List<ExportaIntegracaoCadEstadoWS> cadEstado(
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo);
|
Integer codEmpresaGrupo);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadClienteWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadClienteWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "cadCliente", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadCliente")
|
@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")
|
@ResponseWrapper(localName = "cadClienteResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadClienteResponse")
|
||||||
public List<ExportaIntegracaoCadClienteWS> cadCliente(
|
public List<ExportaIntegracaoCadClienteWS> cadCliente(
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo);
|
Integer codEmpresaGrupo);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadLocalidadeWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadLocalidadeWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "cadLocalidade", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadLocalidade")
|
@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")
|
@ResponseWrapper(localName = "cadLocalidadeResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadLocalidadeResponse")
|
||||||
public List<ExportaIntegracaoCadLocalidadeWS> cadLocalidade(
|
public List<ExportaIntegracaoCadLocalidadeWS> cadLocalidade(
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo);
|
Integer codEmpresaGrupo);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadFormaPagamentoWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadFormaPagamentoWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "cadFormaPagamento", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadFormaPagamento")
|
@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")
|
@ResponseWrapper(localName = "cadFormaPagamentoResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadFormaPagamentoResponse")
|
||||||
public List<ExportaIntegracaoCadFormaPagamentoWS> cadFormaPagamento(
|
public List<ExportaIntegracaoCadFormaPagamentoWS> cadFormaPagamento(
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo);
|
Integer codEmpresaGrupo);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @param codEmpresa
|
* @param codEmpresa
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadLinhaWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadLinhaWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "cadLinha", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadLinha")
|
@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")
|
@ResponseWrapper(localName = "cadLinhaResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadLinhaResponse")
|
||||||
public List<ExportaIntegracaoCadLinhaWS> cadLinha(
|
public List<ExportaIntegracaoCadLinhaWS> cadLinha(
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo,
|
Integer codEmpresaGrupo,
|
||||||
@WebParam(name = "codEmpresa", targetNamespace = "")
|
@WebParam(name = "codEmpresa", targetNamespace = "")
|
||||||
String codEmpresa);
|
String codEmpresa);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @param codEmpresa
|
* @param codEmpresa
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadBeneficioWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadBeneficioWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "cadBeneficio", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadBeneficio")
|
@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")
|
@ResponseWrapper(localName = "cadBeneficioResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadBeneficioResponse")
|
||||||
public List<ExportaIntegracaoCadBeneficioWS> cadBeneficio(
|
public List<ExportaIntegracaoCadBeneficioWS> cadBeneficio(
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo,
|
Integer codEmpresaGrupo,
|
||||||
@WebParam(name = "codEmpresa", targetNamespace = "")
|
@WebParam(name = "codEmpresa", targetNamespace = "")
|
||||||
String codEmpresa);
|
String codEmpresa);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadReceitaDespesaWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadReceitaDespesaWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "cadReceitaDespesa", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadReceitaDespesa")
|
@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")
|
@ResponseWrapper(localName = "cadReceitaDespesaResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadReceitaDespesaResponse")
|
||||||
public List<ExportaIntegracaoCadReceitaDespesaWS> cadReceitaDespesa(
|
public List<ExportaIntegracaoCadReceitaDespesaWS> cadReceitaDespesa(
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo);
|
Integer codEmpresaGrupo);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadAgenciaWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoCadAgenciaWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "cadAgencia", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadAgencia")
|
@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")
|
@ResponseWrapper(localName = "cadAgenciaResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.CadAgenciaResponse")
|
||||||
public List<ExportaIntegracaoCadAgenciaWS> cadAgencia(
|
public List<ExportaIntegracaoCadAgenciaWS> cadAgencia(
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo);
|
Integer codEmpresaGrupo);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param dataFim
|
* @param dataFim
|
||||||
* @param codEmpresaGrupo
|
* @param codEmpresaGrupo
|
||||||
* @param agenciaInicio
|
* @param agenciaInicio
|
||||||
* @param dataInicio
|
* @param dataInicio
|
||||||
* @param codEmpresa
|
* @param codEmpresa
|
||||||
* @param agenciaFim
|
* @param agenciaFim
|
||||||
* @return
|
* @return
|
||||||
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoReceitaDespesaWS>
|
* returns java.util.List<com.rjconsultores.hstcajservice.ws.ExportaIntegracaoReceitaDespesaWS>
|
||||||
*/
|
*/
|
||||||
@WebMethod
|
@WebMethod
|
||||||
@WebResult(targetNamespace = "")
|
@WebResult(targetNamespace = "")
|
||||||
@RequestWrapper(localName = "buscarReceitaDespesa", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarReceitaDespesa")
|
@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")
|
@ResponseWrapper(localName = "buscarReceitaDespesaResponse", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", className = "com.rjconsultores.hstcajservice.ws.BuscarReceitaDespesaResponse")
|
||||||
public List<ExportaIntegracaoReceitaDespesaWS> buscarReceitaDespesa(
|
public List<ExportaIntegracaoReceitaDespesaWS> buscarReceitaDespesa(
|
||||||
@WebParam(name = "dataInicio", targetNamespace = "")
|
@WebParam(name = "dataInicio", targetNamespace = "")
|
||||||
String dataInicio,
|
String dataInicio,
|
||||||
@WebParam(name = "dataFim", targetNamespace = "")
|
@WebParam(name = "dataFim", targetNamespace = "")
|
||||||
String dataFim,
|
String dataFim,
|
||||||
@WebParam(name = "agenciaInicio", targetNamespace = "")
|
@WebParam(name = "agenciaInicio", targetNamespace = "")
|
||||||
String agenciaInicio,
|
String agenciaInicio,
|
||||||
@WebParam(name = "agenciaFim", targetNamespace = "")
|
@WebParam(name = "agenciaFim", targetNamespace = "")
|
||||||
String agenciaFim,
|
String agenciaFim,
|
||||||
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
@WebParam(name = "codEmpresaGrupo", targetNamespace = "")
|
||||||
Integer codEmpresaGrupo,
|
Integer codEmpresaGrupo,
|
||||||
@WebParam(name = "codEmpresa", targetNamespace = "")
|
@WebParam(name = "codEmpresa", targetNamespace = "")
|
||||||
String codEmpresa);
|
String codEmpresa);
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,57 +1,57 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
|
||||||
import javax.xml.namespace.QName;
|
import javax.xml.namespace.QName;
|
||||||
import javax.xml.ws.Service;
|
import javax.xml.ws.Service;
|
||||||
import javax.xml.ws.WebEndpoint;
|
import javax.xml.ws.WebEndpoint;
|
||||||
import javax.xml.ws.WebServiceClient;
|
import javax.xml.ws.WebServiceClient;
|
||||||
import javax.xml.ws.WebServiceFeature;
|
import javax.xml.ws.WebServiceFeature;
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by the JAX-WS RI.
|
* This class was generated by the JAX-WS RI.
|
||||||
* JAX-WS RI 2.1.6 in JDK 6
|
* JAX-WS RI 2.1.6 in JDK 6
|
||||||
* Generated source version: 2.1
|
* Generated source version: 2.1
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@WebServiceClient(name = "BilheteServiceService", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", wsdlLocation = "http://52.72.4.158:8280/WSIntegracao/BilheteService?wsdl")
|
@WebServiceClient(name = "BilheteServiceService", targetNamespace = "http://ws.hstcajservice.rjconsultores.com/", wsdlLocation = "http://52.72.4.158:8280/WSIntegracao/BilheteService?wsdl")
|
||||||
public class BilheteServiceService
|
public class BilheteServiceService
|
||||||
extends Service
|
extends Service
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
private final static Logger logger = LogManager.getLogger(com.rjconsultores.hstcajservice.ws.BilheteServiceService.class);
|
private final static Logger logger = LogManager.getLogger(com.rjconsultores.hstcajservice.ws.BilheteServiceService.class);
|
||||||
|
|
||||||
|
|
||||||
public BilheteServiceService(URL wsdlLocation, QName serviceName) {
|
public BilheteServiceService(URL wsdlLocation, QName serviceName) {
|
||||||
super(wsdlLocation, serviceName);
|
super(wsdlLocation, serviceName);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* returns BilheteService
|
* returns BilheteService
|
||||||
*/
|
*/
|
||||||
@WebEndpoint(name = "BilheteServicePort")
|
@WebEndpoint(name = "BilheteServicePort")
|
||||||
public BilheteService getBilheteServicePort() {
|
public BilheteService getBilheteServicePort() {
|
||||||
return super.getPort(new QName("http://ws.hstcajservice.rjconsultores.com/", "BilheteServicePort"), BilheteService.class);
|
return super.getPort(new QName("http://ws.hstcajservice.rjconsultores.com/", "BilheteServicePort"), BilheteService.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param features
|
* @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.
|
* 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
|
* @return
|
||||||
* returns BilheteService
|
* returns BilheteService
|
||||||
*/
|
*/
|
||||||
@WebEndpoint(name = "BilheteServicePort")
|
@WebEndpoint(name = "BilheteServicePort")
|
||||||
public BilheteService getBilheteServicePort(WebServiceFeature... features) {
|
public BilheteService getBilheteServicePort(WebServiceFeature... features) {
|
||||||
return super.getPort(new QName("http://ws.hstcajservice.rjconsultores.com/", "BilheteServicePort"), BilheteService.class, features);
|
return super.getPort(new QName("http://ws.hstcajservice.rjconsultores.com/", "BilheteServicePort"), BilheteService.class, features);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,25 +1,25 @@
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
|
||||||
import com.rjconsultores.hstcajservice.ws.ExportaIntegracaoWS;
|
import com.rjconsultores.hstcajservice.ws.ExportaIntegracaoWS;
|
||||||
@XmlRootElement(name = "bilhetes")
|
@XmlRootElement(name = "bilhetes")
|
||||||
@XmlAccessorType (XmlAccessType.FIELD)
|
@XmlAccessorType (XmlAccessType.FIELD)
|
||||||
public class Bilhetes {
|
public class Bilhetes {
|
||||||
@XmlElement(name = "bilhete")
|
@XmlElement(name = "bilhete")
|
||||||
private List<ExportaIntegracaoWS> bilhetes = null;
|
private List<ExportaIntegracaoWS> bilhetes = null;
|
||||||
|
|
||||||
public List<ExportaIntegracaoWS> getBilhete() {
|
public List<ExportaIntegracaoWS> getBilhete() {
|
||||||
return bilhetes;
|
return bilhetes;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setBilhetes(List<ExportaIntegracaoWS> bilhete) {
|
public void setBilhetes(List<ExportaIntegracaoWS> bilhete) {
|
||||||
this.bilhetes = bilhete;
|
this.bilhetes = bilhete;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,222 +1,222 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for buscarBilhetes complex type.
|
* <p>Java class for buscarBilhetes complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="buscarBilhetes">
|
* <complexType name="buscarBilhetes">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="fiscal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="fiscal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "buscarBilhetes", propOrder = {
|
@XmlType(name = "buscarBilhetes", propOrder = {
|
||||||
"dataInicio",
|
"dataInicio",
|
||||||
"dataFim",
|
"dataFim",
|
||||||
"agenciaInicio",
|
"agenciaInicio",
|
||||||
"agenciaFim",
|
"agenciaFim",
|
||||||
"codEmpresaGrupo",
|
"codEmpresaGrupo",
|
||||||
"codEmpresa",
|
"codEmpresa",
|
||||||
"fiscal"
|
"fiscal"
|
||||||
})
|
})
|
||||||
public class BuscarBilhetes {
|
public class BuscarBilhetes {
|
||||||
|
|
||||||
protected String dataInicio;
|
protected String dataInicio;
|
||||||
protected String dataFim;
|
protected String dataFim;
|
||||||
protected String agenciaInicio;
|
protected String agenciaInicio;
|
||||||
protected String agenciaFim;
|
protected String agenciaFim;
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
protected String codEmpresa;
|
protected String codEmpresa;
|
||||||
protected String fiscal;
|
protected String fiscal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the dataInicio property.
|
* Gets the value of the dataInicio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDataInicio() {
|
public String getDataInicio() {
|
||||||
return dataInicio;
|
return dataInicio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the dataInicio property.
|
* Sets the value of the dataInicio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDataInicio(String value) {
|
public void setDataInicio(String value) {
|
||||||
this.dataInicio = value;
|
this.dataInicio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the dataFim property.
|
* Gets the value of the dataFim property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDataFim() {
|
public String getDataFim() {
|
||||||
return dataFim;
|
return dataFim;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the dataFim property.
|
* Sets the value of the dataFim property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDataFim(String value) {
|
public void setDataFim(String value) {
|
||||||
this.dataFim = value;
|
this.dataFim = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agenciaInicio property.
|
* Gets the value of the agenciaInicio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgenciaInicio() {
|
public String getAgenciaInicio() {
|
||||||
return agenciaInicio;
|
return agenciaInicio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agenciaInicio property.
|
* Sets the value of the agenciaInicio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgenciaInicio(String value) {
|
public void setAgenciaInicio(String value) {
|
||||||
this.agenciaInicio = value;
|
this.agenciaInicio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agenciaFim property.
|
* Gets the value of the agenciaFim property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgenciaFim() {
|
public String getAgenciaFim() {
|
||||||
return agenciaFim;
|
return agenciaFim;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agenciaFim property.
|
* Sets the value of the agenciaFim property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgenciaFim(String value) {
|
public void setAgenciaFim(String value) {
|
||||||
this.agenciaFim = value;
|
this.agenciaFim = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresa property.
|
* Gets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEmpresa() {
|
public String getCodEmpresa() {
|
||||||
return codEmpresa;
|
return codEmpresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresa property.
|
* Sets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresa(String value) {
|
public void setCodEmpresa(String value) {
|
||||||
this.codEmpresa = value;
|
this.codEmpresa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the fiscal property.
|
* Gets the value of the fiscal property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getFiscal() {
|
public String getFiscal() {
|
||||||
return fiscal;
|
return fiscal;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the fiscal property.
|
* Sets the value of the fiscal property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setFiscal(String value) {
|
public void setFiscal(String value) {
|
||||||
this.fiscal = value;
|
this.fiscal = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,222 +1,222 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for buscarBilhetesInconsistente complex type.
|
* <p>Java class for buscarBilhetesInconsistente complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="buscarBilhetesInconsistente">
|
* <complexType name="buscarBilhetesInconsistente">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="fiscal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="fiscal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "buscarBilhetesInconsistente", propOrder = {
|
@XmlType(name = "buscarBilhetesInconsistente", propOrder = {
|
||||||
"dataInicio",
|
"dataInicio",
|
||||||
"dataFim",
|
"dataFim",
|
||||||
"agenciaInicio",
|
"agenciaInicio",
|
||||||
"agenciaFim",
|
"agenciaFim",
|
||||||
"codEmpresaGrupo",
|
"codEmpresaGrupo",
|
||||||
"codEmpresa",
|
"codEmpresa",
|
||||||
"fiscal"
|
"fiscal"
|
||||||
})
|
})
|
||||||
public class BuscarBilhetesInconsistente {
|
public class BuscarBilhetesInconsistente {
|
||||||
|
|
||||||
protected String dataInicio;
|
protected String dataInicio;
|
||||||
protected String dataFim;
|
protected String dataFim;
|
||||||
protected String agenciaInicio;
|
protected String agenciaInicio;
|
||||||
protected String agenciaFim;
|
protected String agenciaFim;
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
protected String codEmpresa;
|
protected String codEmpresa;
|
||||||
protected String fiscal;
|
protected String fiscal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the dataInicio property.
|
* Gets the value of the dataInicio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDataInicio() {
|
public String getDataInicio() {
|
||||||
return dataInicio;
|
return dataInicio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the dataInicio property.
|
* Sets the value of the dataInicio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDataInicio(String value) {
|
public void setDataInicio(String value) {
|
||||||
this.dataInicio = value;
|
this.dataInicio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the dataFim property.
|
* Gets the value of the dataFim property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDataFim() {
|
public String getDataFim() {
|
||||||
return dataFim;
|
return dataFim;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the dataFim property.
|
* Sets the value of the dataFim property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDataFim(String value) {
|
public void setDataFim(String value) {
|
||||||
this.dataFim = value;
|
this.dataFim = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agenciaInicio property.
|
* Gets the value of the agenciaInicio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgenciaInicio() {
|
public String getAgenciaInicio() {
|
||||||
return agenciaInicio;
|
return agenciaInicio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agenciaInicio property.
|
* Sets the value of the agenciaInicio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgenciaInicio(String value) {
|
public void setAgenciaInicio(String value) {
|
||||||
this.agenciaInicio = value;
|
this.agenciaInicio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agenciaFim property.
|
* Gets the value of the agenciaFim property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgenciaFim() {
|
public String getAgenciaFim() {
|
||||||
return agenciaFim;
|
return agenciaFim;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agenciaFim property.
|
* Sets the value of the agenciaFim property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgenciaFim(String value) {
|
public void setAgenciaFim(String value) {
|
||||||
this.agenciaFim = value;
|
this.agenciaFim = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresa property.
|
* Gets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEmpresa() {
|
public String getCodEmpresa() {
|
||||||
return codEmpresa;
|
return codEmpresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresa property.
|
* Sets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresa(String value) {
|
public void setCodEmpresa(String value) {
|
||||||
this.codEmpresa = value;
|
this.codEmpresa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the fiscal property.
|
* Gets the value of the fiscal property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getFiscal() {
|
public String getFiscal() {
|
||||||
return fiscal;
|
return fiscal;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the fiscal property.
|
* Sets the value of the fiscal property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setFiscal(String value) {
|
public void setFiscal(String value) {
|
||||||
this.fiscal = value;
|
this.fiscal = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for buscarBilhetesInconsistenteResponse complex type.
|
* <p>Java class for buscarBilhetesInconsistenteResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="buscarBilhetesInconsistenteResponse">
|
* <complexType name="buscarBilhetesInconsistenteResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "buscarBilhetesInconsistenteResponse", propOrder = {
|
@XmlType(name = "buscarBilhetesInconsistenteResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class BuscarBilhetesInconsistenteResponse {
|
public class BuscarBilhetesInconsistenteResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoWS> _return;
|
protected List<ExportaIntegracaoWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoWS }
|
* {@link ExportaIntegracaoWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoWS> getReturn() {
|
public List<ExportaIntegracaoWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoWS>();
|
_return = new ArrayList<ExportaIntegracaoWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for buscarBilhetesResponse complex type.
|
* <p>Java class for buscarBilhetesResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="buscarBilhetesResponse">
|
* <complexType name="buscarBilhetesResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "buscarBilhetesResponse", propOrder = {
|
@XmlType(name = "buscarBilhetesResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class BuscarBilhetesResponse {
|
public class BuscarBilhetesResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoWS> _return;
|
protected List<ExportaIntegracaoWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoWS }
|
* {@link ExportaIntegracaoWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoWS> getReturn() {
|
public List<ExportaIntegracaoWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoWS>();
|
_return = new ArrayList<ExportaIntegracaoWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,195 +1,195 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for buscarReceitaDespesa complex type.
|
* <p>Java class for buscarReceitaDespesa complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="buscarReceitaDespesa">
|
* <complexType name="buscarReceitaDespesa">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="dataInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="dataFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "buscarReceitaDespesa", propOrder = {
|
@XmlType(name = "buscarReceitaDespesa", propOrder = {
|
||||||
"dataInicio",
|
"dataInicio",
|
||||||
"dataFim",
|
"dataFim",
|
||||||
"agenciaInicio",
|
"agenciaInicio",
|
||||||
"agenciaFim",
|
"agenciaFim",
|
||||||
"codEmpresaGrupo",
|
"codEmpresaGrupo",
|
||||||
"codEmpresa"
|
"codEmpresa"
|
||||||
})
|
})
|
||||||
public class BuscarReceitaDespesa {
|
public class BuscarReceitaDespesa {
|
||||||
|
|
||||||
protected String dataInicio;
|
protected String dataInicio;
|
||||||
protected String dataFim;
|
protected String dataFim;
|
||||||
protected String agenciaInicio;
|
protected String agenciaInicio;
|
||||||
protected String agenciaFim;
|
protected String agenciaFim;
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
protected String codEmpresa;
|
protected String codEmpresa;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the dataInicio property.
|
* Gets the value of the dataInicio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDataInicio() {
|
public String getDataInicio() {
|
||||||
return dataInicio;
|
return dataInicio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the dataInicio property.
|
* Sets the value of the dataInicio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDataInicio(String value) {
|
public void setDataInicio(String value) {
|
||||||
this.dataInicio = value;
|
this.dataInicio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the dataFim property.
|
* Gets the value of the dataFim property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDataFim() {
|
public String getDataFim() {
|
||||||
return dataFim;
|
return dataFim;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the dataFim property.
|
* Sets the value of the dataFim property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDataFim(String value) {
|
public void setDataFim(String value) {
|
||||||
this.dataFim = value;
|
this.dataFim = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agenciaInicio property.
|
* Gets the value of the agenciaInicio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgenciaInicio() {
|
public String getAgenciaInicio() {
|
||||||
return agenciaInicio;
|
return agenciaInicio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agenciaInicio property.
|
* Sets the value of the agenciaInicio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgenciaInicio(String value) {
|
public void setAgenciaInicio(String value) {
|
||||||
this.agenciaInicio = value;
|
this.agenciaInicio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agenciaFim property.
|
* Gets the value of the agenciaFim property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgenciaFim() {
|
public String getAgenciaFim() {
|
||||||
return agenciaFim;
|
return agenciaFim;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agenciaFim property.
|
* Sets the value of the agenciaFim property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgenciaFim(String value) {
|
public void setAgenciaFim(String value) {
|
||||||
this.agenciaFim = value;
|
this.agenciaFim = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresa property.
|
* Gets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEmpresa() {
|
public String getCodEmpresa() {
|
||||||
return codEmpresa;
|
return codEmpresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresa property.
|
* Sets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresa(String value) {
|
public void setCodEmpresa(String value) {
|
||||||
this.codEmpresa = value;
|
this.codEmpresa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for buscarReceitaDespesaResponse complex type.
|
* <p>Java class for buscarReceitaDespesaResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="buscarReceitaDespesaResponse">
|
* <complexType name="buscarReceitaDespesaResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoReceitaDespesaWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoReceitaDespesaWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "buscarReceitaDespesaResponse", propOrder = {
|
@XmlType(name = "buscarReceitaDespesaResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class BuscarReceitaDespesaResponse {
|
public class BuscarReceitaDespesaResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoReceitaDespesaWS> _return;
|
protected List<ExportaIntegracaoReceitaDespesaWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoReceitaDespesaWS }
|
* {@link ExportaIntegracaoReceitaDespesaWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoReceitaDespesaWS> getReturn() {
|
public List<ExportaIntegracaoReceitaDespesaWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoReceitaDespesaWS>();
|
_return = new ArrayList<ExportaIntegracaoReceitaDespesaWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,60 +1,60 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadAgencia complex type.
|
* <p>Java class for cadAgencia complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadAgencia">
|
* <complexType name="cadAgencia">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadAgencia", propOrder = {
|
@XmlType(name = "cadAgencia", propOrder = {
|
||||||
"codEmpresaGrupo"
|
"codEmpresaGrupo"
|
||||||
})
|
})
|
||||||
public class CadAgencia {
|
public class CadAgencia {
|
||||||
|
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadAgenciaResponse complex type.
|
* <p>Java class for cadAgenciaResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadAgenciaResponse">
|
* <complexType name="cadAgenciaResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadAgenciaWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadAgenciaWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadAgenciaResponse", propOrder = {
|
@XmlType(name = "cadAgenciaResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class CadAgenciaResponse {
|
public class CadAgenciaResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoCadAgenciaWS> _return;
|
protected List<ExportaIntegracaoCadAgenciaWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoCadAgenciaWS }
|
* {@link ExportaIntegracaoCadAgenciaWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoCadAgenciaWS> getReturn() {
|
public List<ExportaIntegracaoCadAgenciaWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoCadAgenciaWS>();
|
_return = new ArrayList<ExportaIntegracaoCadAgenciaWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,87 +1,87 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadBeneficio complex type.
|
* <p>Java class for cadBeneficio complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadBeneficio">
|
* <complexType name="cadBeneficio">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadBeneficio", propOrder = {
|
@XmlType(name = "cadBeneficio", propOrder = {
|
||||||
"codEmpresaGrupo",
|
"codEmpresaGrupo",
|
||||||
"codEmpresa"
|
"codEmpresa"
|
||||||
})
|
})
|
||||||
public class CadBeneficio {
|
public class CadBeneficio {
|
||||||
|
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
protected String codEmpresa;
|
protected String codEmpresa;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresa property.
|
* Gets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEmpresa() {
|
public String getCodEmpresa() {
|
||||||
return codEmpresa;
|
return codEmpresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresa property.
|
* Sets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresa(String value) {
|
public void setCodEmpresa(String value) {
|
||||||
this.codEmpresa = value;
|
this.codEmpresa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadBeneficioResponse complex type.
|
* <p>Java class for cadBeneficioResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadBeneficioResponse">
|
* <complexType name="cadBeneficioResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadBeneficioWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadBeneficioWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadBeneficioResponse", propOrder = {
|
@XmlType(name = "cadBeneficioResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class CadBeneficioResponse {
|
public class CadBeneficioResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoCadBeneficioWS> _return;
|
protected List<ExportaIntegracaoCadBeneficioWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoCadBeneficioWS }
|
* {@link ExportaIntegracaoCadBeneficioWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoCadBeneficioWS> getReturn() {
|
public List<ExportaIntegracaoCadBeneficioWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoCadBeneficioWS>();
|
_return = new ArrayList<ExportaIntegracaoCadBeneficioWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,141 +1,141 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadBilheteiro complex type.
|
* <p>Java class for cadBilheteiro complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadBilheteiro">
|
* <complexType name="cadBilheteiro">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agenciaInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agenciaFim" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadBilheteiro", propOrder = {
|
@XmlType(name = "cadBilheteiro", propOrder = {
|
||||||
"agenciaInicio",
|
"agenciaInicio",
|
||||||
"agenciaFim",
|
"agenciaFim",
|
||||||
"codEmpresaGrupo",
|
"codEmpresaGrupo",
|
||||||
"codEmpresa"
|
"codEmpresa"
|
||||||
})
|
})
|
||||||
public class CadBilheteiro {
|
public class CadBilheteiro {
|
||||||
|
|
||||||
protected String agenciaInicio;
|
protected String agenciaInicio;
|
||||||
protected String agenciaFim;
|
protected String agenciaFim;
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
protected String codEmpresa;
|
protected String codEmpresa;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agenciaInicio property.
|
* Gets the value of the agenciaInicio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgenciaInicio() {
|
public String getAgenciaInicio() {
|
||||||
return agenciaInicio;
|
return agenciaInicio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agenciaInicio property.
|
* Sets the value of the agenciaInicio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgenciaInicio(String value) {
|
public void setAgenciaInicio(String value) {
|
||||||
this.agenciaInicio = value;
|
this.agenciaInicio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agenciaFim property.
|
* Gets the value of the agenciaFim property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgenciaFim() {
|
public String getAgenciaFim() {
|
||||||
return agenciaFim;
|
return agenciaFim;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agenciaFim property.
|
* Sets the value of the agenciaFim property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgenciaFim(String value) {
|
public void setAgenciaFim(String value) {
|
||||||
this.agenciaFim = value;
|
this.agenciaFim = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresa property.
|
* Gets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEmpresa() {
|
public String getCodEmpresa() {
|
||||||
return codEmpresa;
|
return codEmpresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresa property.
|
* Sets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresa(String value) {
|
public void setCodEmpresa(String value) {
|
||||||
this.codEmpresa = value;
|
this.codEmpresa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadBilheteiroResponse complex type.
|
* <p>Java class for cadBilheteiroResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadBilheteiroResponse">
|
* <complexType name="cadBilheteiroResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadBilheteiroWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadBilheteiroWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadBilheteiroResponse", propOrder = {
|
@XmlType(name = "cadBilheteiroResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class CadBilheteiroResponse {
|
public class CadBilheteiroResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoCadBilheteiroWS> _return;
|
protected List<ExportaIntegracaoCadBilheteiroWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoCadBilheteiroWS }
|
* {@link ExportaIntegracaoCadBilheteiroWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoCadBilheteiroWS> getReturn() {
|
public List<ExportaIntegracaoCadBilheteiroWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoCadBilheteiroWS>();
|
_return = new ArrayList<ExportaIntegracaoCadBilheteiroWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,60 +1,60 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadCliente complex type.
|
* <p>Java class for cadCliente complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadCliente">
|
* <complexType name="cadCliente">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadCliente", propOrder = {
|
@XmlType(name = "cadCliente", propOrder = {
|
||||||
"codEmpresaGrupo"
|
"codEmpresaGrupo"
|
||||||
})
|
})
|
||||||
public class CadCliente {
|
public class CadCliente {
|
||||||
|
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadClienteResponse complex type.
|
* <p>Java class for cadClienteResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadClienteResponse">
|
* <complexType name="cadClienteResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadClienteWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadClienteWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadClienteResponse", propOrder = {
|
@XmlType(name = "cadClienteResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class CadClienteResponse {
|
public class CadClienteResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoCadClienteWS> _return;
|
protected List<ExportaIntegracaoCadClienteWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoCadClienteWS }
|
* {@link ExportaIntegracaoCadClienteWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoCadClienteWS> getReturn() {
|
public List<ExportaIntegracaoCadClienteWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoCadClienteWS>();
|
_return = new ArrayList<ExportaIntegracaoCadClienteWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,60 +1,60 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadEstado complex type.
|
* <p>Java class for cadEstado complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadEstado">
|
* <complexType name="cadEstado">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadEstado", propOrder = {
|
@XmlType(name = "cadEstado", propOrder = {
|
||||||
"codEmpresaGrupo"
|
"codEmpresaGrupo"
|
||||||
})
|
})
|
||||||
public class CadEstado {
|
public class CadEstado {
|
||||||
|
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadEstadoResponse complex type.
|
* <p>Java class for cadEstadoResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadEstadoResponse">
|
* <complexType name="cadEstadoResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadEstadoWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadEstadoWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadEstadoResponse", propOrder = {
|
@XmlType(name = "cadEstadoResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class CadEstadoResponse {
|
public class CadEstadoResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoCadEstadoWS> _return;
|
protected List<ExportaIntegracaoCadEstadoWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoCadEstadoWS }
|
* {@link ExportaIntegracaoCadEstadoWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoCadEstadoWS> getReturn() {
|
public List<ExportaIntegracaoCadEstadoWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoCadEstadoWS>();
|
_return = new ArrayList<ExportaIntegracaoCadEstadoWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,60 +1,60 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadFormaPagamento complex type.
|
* <p>Java class for cadFormaPagamento complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadFormaPagamento">
|
* <complexType name="cadFormaPagamento">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadFormaPagamento", propOrder = {
|
@XmlType(name = "cadFormaPagamento", propOrder = {
|
||||||
"codEmpresaGrupo"
|
"codEmpresaGrupo"
|
||||||
})
|
})
|
||||||
public class CadFormaPagamento {
|
public class CadFormaPagamento {
|
||||||
|
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadFormaPagamentoResponse complex type.
|
* <p>Java class for cadFormaPagamentoResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadFormaPagamentoResponse">
|
* <complexType name="cadFormaPagamentoResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadFormaPagamentoWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadFormaPagamentoWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadFormaPagamentoResponse", propOrder = {
|
@XmlType(name = "cadFormaPagamentoResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class CadFormaPagamentoResponse {
|
public class CadFormaPagamentoResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoCadFormaPagamentoWS> _return;
|
protected List<ExportaIntegracaoCadFormaPagamentoWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoCadFormaPagamentoWS }
|
* {@link ExportaIntegracaoCadFormaPagamentoWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoCadFormaPagamentoWS> getReturn() {
|
public List<ExportaIntegracaoCadFormaPagamentoWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoCadFormaPagamentoWS>();
|
_return = new ArrayList<ExportaIntegracaoCadFormaPagamentoWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,87 +1,87 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadLinha complex type.
|
* <p>Java class for cadLinha complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadLinha">
|
* <complexType name="cadLinha">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadLinha", propOrder = {
|
@XmlType(name = "cadLinha", propOrder = {
|
||||||
"codEmpresaGrupo",
|
"codEmpresaGrupo",
|
||||||
"codEmpresa"
|
"codEmpresa"
|
||||||
})
|
})
|
||||||
public class CadLinha {
|
public class CadLinha {
|
||||||
|
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
protected String codEmpresa;
|
protected String codEmpresa;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresa property.
|
* Gets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEmpresa() {
|
public String getCodEmpresa() {
|
||||||
return codEmpresa;
|
return codEmpresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresa property.
|
* Sets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresa(String value) {
|
public void setCodEmpresa(String value) {
|
||||||
this.codEmpresa = value;
|
this.codEmpresa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadLinhaResponse complex type.
|
* <p>Java class for cadLinhaResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadLinhaResponse">
|
* <complexType name="cadLinhaResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadLinhaWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadLinhaWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadLinhaResponse", propOrder = {
|
@XmlType(name = "cadLinhaResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class CadLinhaResponse {
|
public class CadLinhaResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoCadLinhaWS> _return;
|
protected List<ExportaIntegracaoCadLinhaWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoCadLinhaWS }
|
* {@link ExportaIntegracaoCadLinhaWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoCadLinhaWS> getReturn() {
|
public List<ExportaIntegracaoCadLinhaWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoCadLinhaWS>();
|
_return = new ArrayList<ExportaIntegracaoCadLinhaWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,60 +1,60 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadLocalidade complex type.
|
* <p>Java class for cadLocalidade complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadLocalidade">
|
* <complexType name="cadLocalidade">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadLocalidade", propOrder = {
|
@XmlType(name = "cadLocalidade", propOrder = {
|
||||||
"codEmpresaGrupo"
|
"codEmpresaGrupo"
|
||||||
})
|
})
|
||||||
public class CadLocalidade {
|
public class CadLocalidade {
|
||||||
|
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadLocalidadeResponse complex type.
|
* <p>Java class for cadLocalidadeResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadLocalidadeResponse">
|
* <complexType name="cadLocalidadeResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadLocalidadeWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadLocalidadeWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadLocalidadeResponse", propOrder = {
|
@XmlType(name = "cadLocalidadeResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class CadLocalidadeResponse {
|
public class CadLocalidadeResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoCadLocalidadeWS> _return;
|
protected List<ExportaIntegracaoCadLocalidadeWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoCadLocalidadeWS }
|
* {@link ExportaIntegracaoCadLocalidadeWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoCadLocalidadeWS> getReturn() {
|
public List<ExportaIntegracaoCadLocalidadeWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoCadLocalidadeWS>();
|
_return = new ArrayList<ExportaIntegracaoCadLocalidadeWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,60 +1,60 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadReceitaDespesa complex type.
|
* <p>Java class for cadReceitaDespesa complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadReceitaDespesa">
|
* <complexType name="cadReceitaDespesa">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
* <element name="codEmpresaGrupo" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadReceitaDespesa", propOrder = {
|
@XmlType(name = "cadReceitaDespesa", propOrder = {
|
||||||
"codEmpresaGrupo"
|
"codEmpresaGrupo"
|
||||||
})
|
})
|
||||||
public class CadReceitaDespesa {
|
public class CadReceitaDespesa {
|
||||||
|
|
||||||
protected Integer codEmpresaGrupo;
|
protected Integer codEmpresaGrupo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaGrupo property.
|
* Gets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public Integer getCodEmpresaGrupo() {
|
public Integer getCodEmpresaGrupo() {
|
||||||
return codEmpresaGrupo;
|
return codEmpresaGrupo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaGrupo property.
|
* Sets the value of the codEmpresaGrupo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link Integer }
|
* {@link Integer }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaGrupo(Integer value) {
|
public void setCodEmpresaGrupo(Integer value) {
|
||||||
this.codEmpresaGrupo = value;
|
this.codEmpresaGrupo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,69 +1,69 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for cadReceitaDespesaResponse complex type.
|
* <p>Java class for cadReceitaDespesaResponse complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="cadReceitaDespesaResponse">
|
* <complexType name="cadReceitaDespesaResponse">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadReceitaDespesaWS" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="return" type="{http://ws.hstcajservice.rjconsultores.com/}exportaIntegracaoCadReceitaDespesaWS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "cadReceitaDespesaResponse", propOrder = {
|
@XmlType(name = "cadReceitaDespesaResponse", propOrder = {
|
||||||
"_return"
|
"_return"
|
||||||
})
|
})
|
||||||
public class CadReceitaDespesaResponse {
|
public class CadReceitaDespesaResponse {
|
||||||
|
|
||||||
@XmlElement(name = "return")
|
@XmlElement(name = "return")
|
||||||
protected List<ExportaIntegracaoCadReceitaDespesaWS> _return;
|
protected List<ExportaIntegracaoCadReceitaDespesaWS> _return;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the return property.
|
* Gets the value of the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* returned list will be present inside the JAXB object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the return property.
|
* This is why there is not a <CODE>set</CODE> method for the return property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getReturn().add(newItem);
|
* getReturn().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ExportaIntegracaoCadReceitaDespesaWS }
|
* {@link ExportaIntegracaoCadReceitaDespesaWS }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ExportaIntegracaoCadReceitaDespesaWS> getReturn() {
|
public List<ExportaIntegracaoCadReceitaDespesaWS> getReturn() {
|
||||||
if (_return == null) {
|
if (_return == null) {
|
||||||
_return = new ArrayList<ExportaIntegracaoCadReceitaDespesaWS>();
|
_return = new ArrayList<ExportaIntegracaoCadReceitaDespesaWS>();
|
||||||
}
|
}
|
||||||
return this._return;
|
return this._return;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,114 +1,114 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoCadAgenciaWS complex type.
|
* <p>Java class for exportaIntegracaoCadAgenciaWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoCadAgenciaWS">
|
* <complexType name="exportaIntegracaoCadAgenciaWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="ativo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="ativo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codAgencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codAgencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="descAgencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="descAgencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoCadAgenciaWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoCadAgenciaWS", propOrder = {
|
||||||
"ativo",
|
"ativo",
|
||||||
"codAgencia",
|
"codAgencia",
|
||||||
"descAgencia"
|
"descAgencia"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoCadAgenciaWS {
|
public class ExportaIntegracaoCadAgenciaWS {
|
||||||
|
|
||||||
protected String ativo;
|
protected String ativo;
|
||||||
protected String codAgencia;
|
protected String codAgencia;
|
||||||
protected String descAgencia;
|
protected String descAgencia;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the ativo property.
|
* Gets the value of the ativo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAtivo() {
|
public String getAtivo() {
|
||||||
return ativo;
|
return ativo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the ativo property.
|
* Sets the value of the ativo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAtivo(String value) {
|
public void setAtivo(String value) {
|
||||||
this.ativo = value;
|
this.ativo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codAgencia property.
|
* Gets the value of the codAgencia property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodAgencia() {
|
public String getCodAgencia() {
|
||||||
return codAgencia;
|
return codAgencia;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codAgencia property.
|
* Sets the value of the codAgencia property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodAgencia(String value) {
|
public void setCodAgencia(String value) {
|
||||||
this.codAgencia = value;
|
this.codAgencia = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the descAgencia property.
|
* Gets the value of the descAgencia property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDescAgencia() {
|
public String getDescAgencia() {
|
||||||
return descAgencia;
|
return descAgencia;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the descAgencia property.
|
* Sets the value of the descAgencia property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDescAgencia(String value) {
|
public void setDescAgencia(String value) {
|
||||||
this.descAgencia = value;
|
this.descAgencia = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,276 +1,276 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoCadBeneficioWS complex type.
|
* <p>Java class for exportaIntegracaoCadBeneficioWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoCadBeneficioWS">
|
* <complexType name="exportaIntegracaoCadBeneficioWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="classeBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="classeBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="descontoBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="descontoBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="descricaoBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="descricaoBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="empresaBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="empresaBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="linhaBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="linhaBeneficio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="orgConcedLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="orgConcedLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="temTaxaEmbarque" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="temTaxaEmbarque" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="temTaxaSeguro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="temTaxaSeguro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoCadBeneficioWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoCadBeneficioWS", propOrder = {
|
||||||
"classeBeneficio",
|
"classeBeneficio",
|
||||||
"codBeneficio",
|
"codBeneficio",
|
||||||
"descontoBeneficio",
|
"descontoBeneficio",
|
||||||
"descricaoBeneficio",
|
"descricaoBeneficio",
|
||||||
"empresaBeneficio",
|
"empresaBeneficio",
|
||||||
"linhaBeneficio",
|
"linhaBeneficio",
|
||||||
"orgConcedLinha",
|
"orgConcedLinha",
|
||||||
"temTaxaEmbarque",
|
"temTaxaEmbarque",
|
||||||
"temTaxaSeguro"
|
"temTaxaSeguro"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoCadBeneficioWS {
|
public class ExportaIntegracaoCadBeneficioWS {
|
||||||
|
|
||||||
protected String classeBeneficio;
|
protected String classeBeneficio;
|
||||||
protected String codBeneficio;
|
protected String codBeneficio;
|
||||||
protected String descontoBeneficio;
|
protected String descontoBeneficio;
|
||||||
protected String descricaoBeneficio;
|
protected String descricaoBeneficio;
|
||||||
protected String empresaBeneficio;
|
protected String empresaBeneficio;
|
||||||
protected String linhaBeneficio;
|
protected String linhaBeneficio;
|
||||||
protected String orgConcedLinha;
|
protected String orgConcedLinha;
|
||||||
protected String temTaxaEmbarque;
|
protected String temTaxaEmbarque;
|
||||||
protected String temTaxaSeguro;
|
protected String temTaxaSeguro;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the classeBeneficio property.
|
* Gets the value of the classeBeneficio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getClasseBeneficio() {
|
public String getClasseBeneficio() {
|
||||||
return classeBeneficio;
|
return classeBeneficio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the classeBeneficio property.
|
* Sets the value of the classeBeneficio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setClasseBeneficio(String value) {
|
public void setClasseBeneficio(String value) {
|
||||||
this.classeBeneficio = value;
|
this.classeBeneficio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codBeneficio property.
|
* Gets the value of the codBeneficio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodBeneficio() {
|
public String getCodBeneficio() {
|
||||||
return codBeneficio;
|
return codBeneficio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codBeneficio property.
|
* Sets the value of the codBeneficio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodBeneficio(String value) {
|
public void setCodBeneficio(String value) {
|
||||||
this.codBeneficio = value;
|
this.codBeneficio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the descontoBeneficio property.
|
* Gets the value of the descontoBeneficio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDescontoBeneficio() {
|
public String getDescontoBeneficio() {
|
||||||
return descontoBeneficio;
|
return descontoBeneficio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the descontoBeneficio property.
|
* Sets the value of the descontoBeneficio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDescontoBeneficio(String value) {
|
public void setDescontoBeneficio(String value) {
|
||||||
this.descontoBeneficio = value;
|
this.descontoBeneficio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the descricaoBeneficio property.
|
* Gets the value of the descricaoBeneficio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDescricaoBeneficio() {
|
public String getDescricaoBeneficio() {
|
||||||
return descricaoBeneficio;
|
return descricaoBeneficio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the descricaoBeneficio property.
|
* Sets the value of the descricaoBeneficio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDescricaoBeneficio(String value) {
|
public void setDescricaoBeneficio(String value) {
|
||||||
this.descricaoBeneficio = value;
|
this.descricaoBeneficio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the empresaBeneficio property.
|
* Gets the value of the empresaBeneficio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getEmpresaBeneficio() {
|
public String getEmpresaBeneficio() {
|
||||||
return empresaBeneficio;
|
return empresaBeneficio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the empresaBeneficio property.
|
* Sets the value of the empresaBeneficio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setEmpresaBeneficio(String value) {
|
public void setEmpresaBeneficio(String value) {
|
||||||
this.empresaBeneficio = value;
|
this.empresaBeneficio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the linhaBeneficio property.
|
* Gets the value of the linhaBeneficio property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getLinhaBeneficio() {
|
public String getLinhaBeneficio() {
|
||||||
return linhaBeneficio;
|
return linhaBeneficio;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the linhaBeneficio property.
|
* Sets the value of the linhaBeneficio property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setLinhaBeneficio(String value) {
|
public void setLinhaBeneficio(String value) {
|
||||||
this.linhaBeneficio = value;
|
this.linhaBeneficio = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the orgConcedLinha property.
|
* Gets the value of the orgConcedLinha property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getOrgConcedLinha() {
|
public String getOrgConcedLinha() {
|
||||||
return orgConcedLinha;
|
return orgConcedLinha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the orgConcedLinha property.
|
* Sets the value of the orgConcedLinha property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setOrgConcedLinha(String value) {
|
public void setOrgConcedLinha(String value) {
|
||||||
this.orgConcedLinha = value;
|
this.orgConcedLinha = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the temTaxaEmbarque property.
|
* Gets the value of the temTaxaEmbarque property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTemTaxaEmbarque() {
|
public String getTemTaxaEmbarque() {
|
||||||
return temTaxaEmbarque;
|
return temTaxaEmbarque;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the temTaxaEmbarque property.
|
* Sets the value of the temTaxaEmbarque property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTemTaxaEmbarque(String value) {
|
public void setTemTaxaEmbarque(String value) {
|
||||||
this.temTaxaEmbarque = value;
|
this.temTaxaEmbarque = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the temTaxaSeguro property.
|
* Gets the value of the temTaxaSeguro property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTemTaxaSeguro() {
|
public String getTemTaxaSeguro() {
|
||||||
return temTaxaSeguro;
|
return temTaxaSeguro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the temTaxaSeguro property.
|
* Sets the value of the temTaxaSeguro property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTemTaxaSeguro(String value) {
|
public void setTemTaxaSeguro(String value) {
|
||||||
this.temTaxaSeguro = value;
|
this.temTaxaSeguro = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,168 +1,168 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoCadBilheteiroWS complex type.
|
* <p>Java class for exportaIntegracaoCadBilheteiroWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoCadBilheteiroWS">
|
* <complexType name="exportaIntegracaoCadBilheteiroWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="agenciaBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agenciaBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="ativo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="ativo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="documentoBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="documentoBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="nomeBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="nomeBilheteiro" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoCadBilheteiroWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoCadBilheteiroWS", propOrder = {
|
||||||
"agenciaBilheteiro",
|
"agenciaBilheteiro",
|
||||||
"ativo",
|
"ativo",
|
||||||
"codBilheteiro",
|
"codBilheteiro",
|
||||||
"documentoBilheteiro",
|
"documentoBilheteiro",
|
||||||
"nomeBilheteiro"
|
"nomeBilheteiro"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoCadBilheteiroWS {
|
public class ExportaIntegracaoCadBilheteiroWS {
|
||||||
|
|
||||||
protected String agenciaBilheteiro;
|
protected String agenciaBilheteiro;
|
||||||
protected String ativo;
|
protected String ativo;
|
||||||
protected String codBilheteiro;
|
protected String codBilheteiro;
|
||||||
protected String documentoBilheteiro;
|
protected String documentoBilheteiro;
|
||||||
protected String nomeBilheteiro;
|
protected String nomeBilheteiro;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agenciaBilheteiro property.
|
* Gets the value of the agenciaBilheteiro property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgenciaBilheteiro() {
|
public String getAgenciaBilheteiro() {
|
||||||
return agenciaBilheteiro;
|
return agenciaBilheteiro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agenciaBilheteiro property.
|
* Sets the value of the agenciaBilheteiro property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgenciaBilheteiro(String value) {
|
public void setAgenciaBilheteiro(String value) {
|
||||||
this.agenciaBilheteiro = value;
|
this.agenciaBilheteiro = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the ativo property.
|
* Gets the value of the ativo property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAtivo() {
|
public String getAtivo() {
|
||||||
return ativo;
|
return ativo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the ativo property.
|
* Sets the value of the ativo property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAtivo(String value) {
|
public void setAtivo(String value) {
|
||||||
this.ativo = value;
|
this.ativo = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codBilheteiro property.
|
* Gets the value of the codBilheteiro property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodBilheteiro() {
|
public String getCodBilheteiro() {
|
||||||
return codBilheteiro;
|
return codBilheteiro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codBilheteiro property.
|
* Sets the value of the codBilheteiro property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodBilheteiro(String value) {
|
public void setCodBilheteiro(String value) {
|
||||||
this.codBilheteiro = value;
|
this.codBilheteiro = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the documentoBilheteiro property.
|
* Gets the value of the documentoBilheteiro property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDocumentoBilheteiro() {
|
public String getDocumentoBilheteiro() {
|
||||||
return documentoBilheteiro;
|
return documentoBilheteiro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the documentoBilheteiro property.
|
* Sets the value of the documentoBilheteiro property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDocumentoBilheteiro(String value) {
|
public void setDocumentoBilheteiro(String value) {
|
||||||
this.documentoBilheteiro = value;
|
this.documentoBilheteiro = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the nomeBilheteiro property.
|
* Gets the value of the nomeBilheteiro property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getNomeBilheteiro() {
|
public String getNomeBilheteiro() {
|
||||||
return nomeBilheteiro;
|
return nomeBilheteiro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the nomeBilheteiro property.
|
* Sets the value of the nomeBilheteiro property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setNomeBilheteiro(String value) {
|
public void setNomeBilheteiro(String value) {
|
||||||
this.nomeBilheteiro = value;
|
this.nomeBilheteiro = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,330 +1,330 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoCadClienteWS complex type.
|
* <p>Java class for exportaIntegracaoCadClienteWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoCadClienteWS">
|
* <complexType name="exportaIntegracaoCadClienteWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="bairroCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="bairroCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="cepCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="cepCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="dataNascCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="dataNascCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="emailCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="emailCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="nacioCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="nacioCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="nomeCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="nomeCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="numDocCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="numDocCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="ruaCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="ruaCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="telCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="telCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="tipoDocCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="tipoDocCli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoCadClienteWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoCadClienteWS", propOrder = {
|
||||||
"bairroCli",
|
"bairroCli",
|
||||||
"cepCli",
|
"cepCli",
|
||||||
"codCli",
|
"codCli",
|
||||||
"dataNascCli",
|
"dataNascCli",
|
||||||
"emailCli",
|
"emailCli",
|
||||||
"nacioCli",
|
"nacioCli",
|
||||||
"nomeCli",
|
"nomeCli",
|
||||||
"numDocCli",
|
"numDocCli",
|
||||||
"ruaCli",
|
"ruaCli",
|
||||||
"telCli",
|
"telCli",
|
||||||
"tipoDocCli"
|
"tipoDocCli"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoCadClienteWS {
|
public class ExportaIntegracaoCadClienteWS {
|
||||||
|
|
||||||
protected String bairroCli;
|
protected String bairroCli;
|
||||||
protected String cepCli;
|
protected String cepCli;
|
||||||
protected String codCli;
|
protected String codCli;
|
||||||
protected String dataNascCli;
|
protected String dataNascCli;
|
||||||
protected String emailCli;
|
protected String emailCli;
|
||||||
protected String nacioCli;
|
protected String nacioCli;
|
||||||
protected String nomeCli;
|
protected String nomeCli;
|
||||||
protected String numDocCli;
|
protected String numDocCli;
|
||||||
protected String ruaCli;
|
protected String ruaCli;
|
||||||
protected String telCli;
|
protected String telCli;
|
||||||
protected String tipoDocCli;
|
protected String tipoDocCli;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the bairroCli property.
|
* Gets the value of the bairroCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getBairroCli() {
|
public String getBairroCli() {
|
||||||
return bairroCli;
|
return bairroCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the bairroCli property.
|
* Sets the value of the bairroCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setBairroCli(String value) {
|
public void setBairroCli(String value) {
|
||||||
this.bairroCli = value;
|
this.bairroCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the cepCli property.
|
* Gets the value of the cepCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCepCli() {
|
public String getCepCli() {
|
||||||
return cepCli;
|
return cepCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the cepCli property.
|
* Sets the value of the cepCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCepCli(String value) {
|
public void setCepCli(String value) {
|
||||||
this.cepCli = value;
|
this.cepCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codCli property.
|
* Gets the value of the codCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodCli() {
|
public String getCodCli() {
|
||||||
return codCli;
|
return codCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codCli property.
|
* Sets the value of the codCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodCli(String value) {
|
public void setCodCli(String value) {
|
||||||
this.codCli = value;
|
this.codCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the dataNascCli property.
|
* Gets the value of the dataNascCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDataNascCli() {
|
public String getDataNascCli() {
|
||||||
return dataNascCli;
|
return dataNascCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the dataNascCli property.
|
* Sets the value of the dataNascCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDataNascCli(String value) {
|
public void setDataNascCli(String value) {
|
||||||
this.dataNascCli = value;
|
this.dataNascCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the emailCli property.
|
* Gets the value of the emailCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getEmailCli() {
|
public String getEmailCli() {
|
||||||
return emailCli;
|
return emailCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the emailCli property.
|
* Sets the value of the emailCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setEmailCli(String value) {
|
public void setEmailCli(String value) {
|
||||||
this.emailCli = value;
|
this.emailCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the nacioCli property.
|
* Gets the value of the nacioCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getNacioCli() {
|
public String getNacioCli() {
|
||||||
return nacioCli;
|
return nacioCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the nacioCli property.
|
* Sets the value of the nacioCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setNacioCli(String value) {
|
public void setNacioCli(String value) {
|
||||||
this.nacioCli = value;
|
this.nacioCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the nomeCli property.
|
* Gets the value of the nomeCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getNomeCli() {
|
public String getNomeCli() {
|
||||||
return nomeCli;
|
return nomeCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the nomeCli property.
|
* Sets the value of the nomeCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setNomeCli(String value) {
|
public void setNomeCli(String value) {
|
||||||
this.nomeCli = value;
|
this.nomeCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the numDocCli property.
|
* Gets the value of the numDocCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getNumDocCli() {
|
public String getNumDocCli() {
|
||||||
return numDocCli;
|
return numDocCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the numDocCli property.
|
* Sets the value of the numDocCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setNumDocCli(String value) {
|
public void setNumDocCli(String value) {
|
||||||
this.numDocCli = value;
|
this.numDocCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the ruaCli property.
|
* Gets the value of the ruaCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getRuaCli() {
|
public String getRuaCli() {
|
||||||
return ruaCli;
|
return ruaCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the ruaCli property.
|
* Sets the value of the ruaCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setRuaCli(String value) {
|
public void setRuaCli(String value) {
|
||||||
this.ruaCli = value;
|
this.ruaCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the telCli property.
|
* Gets the value of the telCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTelCli() {
|
public String getTelCli() {
|
||||||
return telCli;
|
return telCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the telCli property.
|
* Sets the value of the telCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTelCli(String value) {
|
public void setTelCli(String value) {
|
||||||
this.telCli = value;
|
this.telCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the tipoDocCli property.
|
* Gets the value of the tipoDocCli property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTipoDocCli() {
|
public String getTipoDocCli() {
|
||||||
return tipoDocCli;
|
return tipoDocCli;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the tipoDocCli property.
|
* Sets the value of the tipoDocCli property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTipoDocCli(String value) {
|
public void setTipoDocCli(String value) {
|
||||||
this.tipoDocCli = value;
|
this.tipoDocCli = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,195 +1,195 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoCadEstadoWS complex type.
|
* <p>Java class for exportaIntegracaoCadEstadoWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoCadEstadoWS">
|
* <complexType name="exportaIntegracaoCadEstadoWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codServidorEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codServidorEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="descEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="descEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="siglaEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="siglaEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="taxaEmbarqueEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="taxaEmbarqueEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="valorICMSEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="valorICMSEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoCadEstadoWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoCadEstadoWS", propOrder = {
|
||||||
"codEstado",
|
"codEstado",
|
||||||
"codServidorEstado",
|
"codServidorEstado",
|
||||||
"descEstado",
|
"descEstado",
|
||||||
"siglaEstado",
|
"siglaEstado",
|
||||||
"taxaEmbarqueEstado",
|
"taxaEmbarqueEstado",
|
||||||
"valorICMSEstado"
|
"valorICMSEstado"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoCadEstadoWS {
|
public class ExportaIntegracaoCadEstadoWS {
|
||||||
|
|
||||||
protected String codEstado;
|
protected String codEstado;
|
||||||
protected String codServidorEstado;
|
protected String codServidorEstado;
|
||||||
protected String descEstado;
|
protected String descEstado;
|
||||||
protected String siglaEstado;
|
protected String siglaEstado;
|
||||||
protected String taxaEmbarqueEstado;
|
protected String taxaEmbarqueEstado;
|
||||||
protected String valorICMSEstado;
|
protected String valorICMSEstado;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEstado property.
|
* Gets the value of the codEstado property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEstado() {
|
public String getCodEstado() {
|
||||||
return codEstado;
|
return codEstado;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEstado property.
|
* Sets the value of the codEstado property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEstado(String value) {
|
public void setCodEstado(String value) {
|
||||||
this.codEstado = value;
|
this.codEstado = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codServidorEstado property.
|
* Gets the value of the codServidorEstado property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodServidorEstado() {
|
public String getCodServidorEstado() {
|
||||||
return codServidorEstado;
|
return codServidorEstado;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codServidorEstado property.
|
* Sets the value of the codServidorEstado property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodServidorEstado(String value) {
|
public void setCodServidorEstado(String value) {
|
||||||
this.codServidorEstado = value;
|
this.codServidorEstado = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the descEstado property.
|
* Gets the value of the descEstado property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDescEstado() {
|
public String getDescEstado() {
|
||||||
return descEstado;
|
return descEstado;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the descEstado property.
|
* Sets the value of the descEstado property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDescEstado(String value) {
|
public void setDescEstado(String value) {
|
||||||
this.descEstado = value;
|
this.descEstado = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the siglaEstado property.
|
* Gets the value of the siglaEstado property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getSiglaEstado() {
|
public String getSiglaEstado() {
|
||||||
return siglaEstado;
|
return siglaEstado;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the siglaEstado property.
|
* Sets the value of the siglaEstado property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setSiglaEstado(String value) {
|
public void setSiglaEstado(String value) {
|
||||||
this.siglaEstado = value;
|
this.siglaEstado = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the taxaEmbarqueEstado property.
|
* Gets the value of the taxaEmbarqueEstado property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTaxaEmbarqueEstado() {
|
public String getTaxaEmbarqueEstado() {
|
||||||
return taxaEmbarqueEstado;
|
return taxaEmbarqueEstado;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the taxaEmbarqueEstado property.
|
* Sets the value of the taxaEmbarqueEstado property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTaxaEmbarqueEstado(String value) {
|
public void setTaxaEmbarqueEstado(String value) {
|
||||||
this.taxaEmbarqueEstado = value;
|
this.taxaEmbarqueEstado = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the valorICMSEstado property.
|
* Gets the value of the valorICMSEstado property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getValorICMSEstado() {
|
public String getValorICMSEstado() {
|
||||||
return valorICMSEstado;
|
return valorICMSEstado;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the valorICMSEstado property.
|
* Sets the value of the valorICMSEstado property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setValorICMSEstado(String value) {
|
public void setValorICMSEstado(String value) {
|
||||||
this.valorICMSEstado = value;
|
this.valorICMSEstado = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,87 +1,87 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoCadFormaPagamentoWS complex type.
|
* <p>Java class for exportaIntegracaoCadFormaPagamentoWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoCadFormaPagamentoWS">
|
* <complexType name="exportaIntegracaoCadFormaPagamentoWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codFormaPag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codFormaPag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="descFormaPag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="descFormaPag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoCadFormaPagamentoWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoCadFormaPagamentoWS", propOrder = {
|
||||||
"codFormaPag",
|
"codFormaPag",
|
||||||
"descFormaPag"
|
"descFormaPag"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoCadFormaPagamentoWS {
|
public class ExportaIntegracaoCadFormaPagamentoWS {
|
||||||
|
|
||||||
protected String codFormaPag;
|
protected String codFormaPag;
|
||||||
protected String descFormaPag;
|
protected String descFormaPag;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codFormaPag property.
|
* Gets the value of the codFormaPag property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodFormaPag() {
|
public String getCodFormaPag() {
|
||||||
return codFormaPag;
|
return codFormaPag;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codFormaPag property.
|
* Sets the value of the codFormaPag property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodFormaPag(String value) {
|
public void setCodFormaPag(String value) {
|
||||||
this.codFormaPag = value;
|
this.codFormaPag = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the descFormaPag property.
|
* Gets the value of the descFormaPag property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDescFormaPag() {
|
public String getDescFormaPag() {
|
||||||
return descFormaPag;
|
return descFormaPag;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the descFormaPag property.
|
* Sets the value of the descFormaPag property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDescFormaPag(String value) {
|
public void setDescFormaPag(String value) {
|
||||||
this.descFormaPag = value;
|
this.descFormaPag = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,222 +1,222 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoCadLinhaWS complex type.
|
* <p>Java class for exportaIntegracaoCadLinhaWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoCadLinhaWS">
|
* <complexType name="exportaIntegracaoCadLinhaWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="classeLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="classeLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codEmpresaLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEmpresaLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="descLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="descLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="detalheLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="detalheLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="orgConcedLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="orgConcedLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="prefixoLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="prefixoLinha" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoCadLinhaWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoCadLinhaWS", propOrder = {
|
||||||
"classeLinha",
|
"classeLinha",
|
||||||
"codEmpresaLinha",
|
"codEmpresaLinha",
|
||||||
"codLinha",
|
"codLinha",
|
||||||
"descLinha",
|
"descLinha",
|
||||||
"detalheLinha",
|
"detalheLinha",
|
||||||
"orgConcedLinha",
|
"orgConcedLinha",
|
||||||
"prefixoLinha"
|
"prefixoLinha"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoCadLinhaWS {
|
public class ExportaIntegracaoCadLinhaWS {
|
||||||
|
|
||||||
protected String classeLinha;
|
protected String classeLinha;
|
||||||
protected String codEmpresaLinha;
|
protected String codEmpresaLinha;
|
||||||
protected String codLinha;
|
protected String codLinha;
|
||||||
protected String descLinha;
|
protected String descLinha;
|
||||||
protected String detalheLinha;
|
protected String detalheLinha;
|
||||||
protected String orgConcedLinha;
|
protected String orgConcedLinha;
|
||||||
protected String prefixoLinha;
|
protected String prefixoLinha;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the classeLinha property.
|
* Gets the value of the classeLinha property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getClasseLinha() {
|
public String getClasseLinha() {
|
||||||
return classeLinha;
|
return classeLinha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the classeLinha property.
|
* Sets the value of the classeLinha property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setClasseLinha(String value) {
|
public void setClasseLinha(String value) {
|
||||||
this.classeLinha = value;
|
this.classeLinha = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaLinha property.
|
* Gets the value of the codEmpresaLinha property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEmpresaLinha() {
|
public String getCodEmpresaLinha() {
|
||||||
return codEmpresaLinha;
|
return codEmpresaLinha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaLinha property.
|
* Sets the value of the codEmpresaLinha property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaLinha(String value) {
|
public void setCodEmpresaLinha(String value) {
|
||||||
this.codEmpresaLinha = value;
|
this.codEmpresaLinha = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codLinha property.
|
* Gets the value of the codLinha property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodLinha() {
|
public String getCodLinha() {
|
||||||
return codLinha;
|
return codLinha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codLinha property.
|
* Sets the value of the codLinha property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodLinha(String value) {
|
public void setCodLinha(String value) {
|
||||||
this.codLinha = value;
|
this.codLinha = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the descLinha property.
|
* Gets the value of the descLinha property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDescLinha() {
|
public String getDescLinha() {
|
||||||
return descLinha;
|
return descLinha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the descLinha property.
|
* Sets the value of the descLinha property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDescLinha(String value) {
|
public void setDescLinha(String value) {
|
||||||
this.descLinha = value;
|
this.descLinha = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the detalheLinha property.
|
* Gets the value of the detalheLinha property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDetalheLinha() {
|
public String getDetalheLinha() {
|
||||||
return detalheLinha;
|
return detalheLinha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the detalheLinha property.
|
* Sets the value of the detalheLinha property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDetalheLinha(String value) {
|
public void setDetalheLinha(String value) {
|
||||||
this.detalheLinha = value;
|
this.detalheLinha = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the orgConcedLinha property.
|
* Gets the value of the orgConcedLinha property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getOrgConcedLinha() {
|
public String getOrgConcedLinha() {
|
||||||
return orgConcedLinha;
|
return orgConcedLinha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the orgConcedLinha property.
|
* Sets the value of the orgConcedLinha property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setOrgConcedLinha(String value) {
|
public void setOrgConcedLinha(String value) {
|
||||||
this.orgConcedLinha = value;
|
this.orgConcedLinha = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the prefixoLinha property.
|
* Gets the value of the prefixoLinha property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getPrefixoLinha() {
|
public String getPrefixoLinha() {
|
||||||
return prefixoLinha;
|
return prefixoLinha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the prefixoLinha property.
|
* Sets the value of the prefixoLinha property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setPrefixoLinha(String value) {
|
public void setPrefixoLinha(String value) {
|
||||||
this.prefixoLinha = value;
|
this.prefixoLinha = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,168 +1,168 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoCadLocalidadeWS complex type.
|
* <p>Java class for exportaIntegracaoCadLocalidadeWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoCadLocalidadeWS">
|
* <complexType name="exportaIntegracaoCadLocalidadeWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codEstadoLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEstadoLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="descLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="descLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="siglaLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="siglaLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="taxaRodoviariaLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="taxaRodoviariaLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoCadLocalidadeWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoCadLocalidadeWS", propOrder = {
|
||||||
"codEstadoLocalidade",
|
"codEstadoLocalidade",
|
||||||
"codLocalidade",
|
"codLocalidade",
|
||||||
"descLocalidade",
|
"descLocalidade",
|
||||||
"siglaLocalidade",
|
"siglaLocalidade",
|
||||||
"taxaRodoviariaLocalidade"
|
"taxaRodoviariaLocalidade"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoCadLocalidadeWS {
|
public class ExportaIntegracaoCadLocalidadeWS {
|
||||||
|
|
||||||
protected String codEstadoLocalidade;
|
protected String codEstadoLocalidade;
|
||||||
protected String codLocalidade;
|
protected String codLocalidade;
|
||||||
protected String descLocalidade;
|
protected String descLocalidade;
|
||||||
protected String siglaLocalidade;
|
protected String siglaLocalidade;
|
||||||
protected String taxaRodoviariaLocalidade;
|
protected String taxaRodoviariaLocalidade;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEstadoLocalidade property.
|
* Gets the value of the codEstadoLocalidade property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEstadoLocalidade() {
|
public String getCodEstadoLocalidade() {
|
||||||
return codEstadoLocalidade;
|
return codEstadoLocalidade;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEstadoLocalidade property.
|
* Sets the value of the codEstadoLocalidade property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEstadoLocalidade(String value) {
|
public void setCodEstadoLocalidade(String value) {
|
||||||
this.codEstadoLocalidade = value;
|
this.codEstadoLocalidade = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codLocalidade property.
|
* Gets the value of the codLocalidade property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodLocalidade() {
|
public String getCodLocalidade() {
|
||||||
return codLocalidade;
|
return codLocalidade;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codLocalidade property.
|
* Sets the value of the codLocalidade property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodLocalidade(String value) {
|
public void setCodLocalidade(String value) {
|
||||||
this.codLocalidade = value;
|
this.codLocalidade = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the descLocalidade property.
|
* Gets the value of the descLocalidade property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDescLocalidade() {
|
public String getDescLocalidade() {
|
||||||
return descLocalidade;
|
return descLocalidade;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the descLocalidade property.
|
* Sets the value of the descLocalidade property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDescLocalidade(String value) {
|
public void setDescLocalidade(String value) {
|
||||||
this.descLocalidade = value;
|
this.descLocalidade = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the siglaLocalidade property.
|
* Gets the value of the siglaLocalidade property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getSiglaLocalidade() {
|
public String getSiglaLocalidade() {
|
||||||
return siglaLocalidade;
|
return siglaLocalidade;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the siglaLocalidade property.
|
* Sets the value of the siglaLocalidade property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setSiglaLocalidade(String value) {
|
public void setSiglaLocalidade(String value) {
|
||||||
this.siglaLocalidade = value;
|
this.siglaLocalidade = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the taxaRodoviariaLocalidade property.
|
* Gets the value of the taxaRodoviariaLocalidade property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTaxaRodoviariaLocalidade() {
|
public String getTaxaRodoviariaLocalidade() {
|
||||||
return taxaRodoviariaLocalidade;
|
return taxaRodoviariaLocalidade;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the taxaRodoviariaLocalidade property.
|
* Sets the value of the taxaRodoviariaLocalidade property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTaxaRodoviariaLocalidade(String value) {
|
public void setTaxaRodoviariaLocalidade(String value) {
|
||||||
this.taxaRodoviariaLocalidade = value;
|
this.taxaRodoviariaLocalidade = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,195 +1,195 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoCadReceitaDespesaWS complex type.
|
* <p>Java class for exportaIntegracaoCadReceitaDespesaWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoCadReceitaDespesaWS">
|
* <complexType name="exportaIntegracaoCadReceitaDespesaWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="codAgenciaReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codAgenciaReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codEmpresaReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEmpresaReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="credDebitoReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="credDebitoReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="descReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="descReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="formaPagReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="formaPagReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoCadReceitaDespesaWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoCadReceitaDespesaWS", propOrder = {
|
||||||
"codAgenciaReceitaDespesa",
|
"codAgenciaReceitaDespesa",
|
||||||
"codEmpresaReceitaDespesa",
|
"codEmpresaReceitaDespesa",
|
||||||
"codReceitaDespesa",
|
"codReceitaDespesa",
|
||||||
"credDebitoReceitaDespesa",
|
"credDebitoReceitaDespesa",
|
||||||
"descReceitaDespesa",
|
"descReceitaDespesa",
|
||||||
"formaPagReceitaDespesa"
|
"formaPagReceitaDespesa"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoCadReceitaDespesaWS {
|
public class ExportaIntegracaoCadReceitaDespesaWS {
|
||||||
|
|
||||||
protected String codAgenciaReceitaDespesa;
|
protected String codAgenciaReceitaDespesa;
|
||||||
protected String codEmpresaReceitaDespesa;
|
protected String codEmpresaReceitaDespesa;
|
||||||
protected String codReceitaDespesa;
|
protected String codReceitaDespesa;
|
||||||
protected String credDebitoReceitaDespesa;
|
protected String credDebitoReceitaDespesa;
|
||||||
protected String descReceitaDespesa;
|
protected String descReceitaDespesa;
|
||||||
protected String formaPagReceitaDespesa;
|
protected String formaPagReceitaDespesa;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codAgenciaReceitaDespesa property.
|
* Gets the value of the codAgenciaReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodAgenciaReceitaDespesa() {
|
public String getCodAgenciaReceitaDespesa() {
|
||||||
return codAgenciaReceitaDespesa;
|
return codAgenciaReceitaDespesa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codAgenciaReceitaDespesa property.
|
* Sets the value of the codAgenciaReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodAgenciaReceitaDespesa(String value) {
|
public void setCodAgenciaReceitaDespesa(String value) {
|
||||||
this.codAgenciaReceitaDespesa = value;
|
this.codAgenciaReceitaDespesa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresaReceitaDespesa property.
|
* Gets the value of the codEmpresaReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEmpresaReceitaDespesa() {
|
public String getCodEmpresaReceitaDespesa() {
|
||||||
return codEmpresaReceitaDespesa;
|
return codEmpresaReceitaDespesa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresaReceitaDespesa property.
|
* Sets the value of the codEmpresaReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresaReceitaDespesa(String value) {
|
public void setCodEmpresaReceitaDespesa(String value) {
|
||||||
this.codEmpresaReceitaDespesa = value;
|
this.codEmpresaReceitaDespesa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codReceitaDespesa property.
|
* Gets the value of the codReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodReceitaDespesa() {
|
public String getCodReceitaDespesa() {
|
||||||
return codReceitaDespesa;
|
return codReceitaDespesa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codReceitaDespesa property.
|
* Sets the value of the codReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodReceitaDespesa(String value) {
|
public void setCodReceitaDespesa(String value) {
|
||||||
this.codReceitaDespesa = value;
|
this.codReceitaDespesa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the credDebitoReceitaDespesa property.
|
* Gets the value of the credDebitoReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCredDebitoReceitaDespesa() {
|
public String getCredDebitoReceitaDespesa() {
|
||||||
return credDebitoReceitaDespesa;
|
return credDebitoReceitaDespesa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the credDebitoReceitaDespesa property.
|
* Sets the value of the credDebitoReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCredDebitoReceitaDespesa(String value) {
|
public void setCredDebitoReceitaDespesa(String value) {
|
||||||
this.credDebitoReceitaDespesa = value;
|
this.credDebitoReceitaDespesa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the descReceitaDespesa property.
|
* Gets the value of the descReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDescReceitaDespesa() {
|
public String getDescReceitaDespesa() {
|
||||||
return descReceitaDespesa;
|
return descReceitaDespesa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the descReceitaDespesa property.
|
* Sets the value of the descReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDescReceitaDespesa(String value) {
|
public void setDescReceitaDespesa(String value) {
|
||||||
this.descReceitaDespesa = value;
|
this.descReceitaDespesa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the formaPagReceitaDespesa property.
|
* Gets the value of the formaPagReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getFormaPagReceitaDespesa() {
|
public String getFormaPagReceitaDespesa() {
|
||||||
return formaPagReceitaDespesa;
|
return formaPagReceitaDespesa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the formaPagReceitaDespesa property.
|
* Sets the value of the formaPagReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setFormaPagReceitaDespesa(String value) {
|
public void setFormaPagReceitaDespesa(String value) {
|
||||||
this.formaPagReceitaDespesa = value;
|
this.formaPagReceitaDespesa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,303 +1,303 @@
|
||||||
|
|
||||||
package com.rjconsultores.hstcajservice.ws;
|
package com.rjconsultores.hstcajservice.ws;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Java class for exportaIntegracaoReceitaDespesaWS complex type.
|
* <p>Java class for exportaIntegracaoReceitaDespesaWS complex type.
|
||||||
*
|
*
|
||||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="exportaIntegracaoReceitaDespesaWS">
|
* <complexType name="exportaIntegracaoReceitaDespesaWS">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="agencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="agencia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codEmpresa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codFilial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codFilial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="codReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="codReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="dataLancamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="dataLancamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="dataMovimento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="dataMovimento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="idReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="idReceitaDespesa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="turno" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="turno" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="usuario" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="usuario" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="valorLancamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="valorLancamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "exportaIntegracaoReceitaDespesaWS", propOrder = {
|
@XmlType(name = "exportaIntegracaoReceitaDespesaWS", propOrder = {
|
||||||
"agencia",
|
"agencia",
|
||||||
"codEmpresa",
|
"codEmpresa",
|
||||||
"codFilial",
|
"codFilial",
|
||||||
"codReceitaDespesa",
|
"codReceitaDespesa",
|
||||||
"dataLancamento",
|
"dataLancamento",
|
||||||
"dataMovimento",
|
"dataMovimento",
|
||||||
"idReceitaDespesa",
|
"idReceitaDespesa",
|
||||||
"turno",
|
"turno",
|
||||||
"usuario",
|
"usuario",
|
||||||
"valorLancamento"
|
"valorLancamento"
|
||||||
})
|
})
|
||||||
public class ExportaIntegracaoReceitaDespesaWS {
|
public class ExportaIntegracaoReceitaDespesaWS {
|
||||||
|
|
||||||
protected String agencia;
|
protected String agencia;
|
||||||
protected String codEmpresa;
|
protected String codEmpresa;
|
||||||
protected String codFilial;
|
protected String codFilial;
|
||||||
protected String codReceitaDespesa;
|
protected String codReceitaDespesa;
|
||||||
protected String dataLancamento;
|
protected String dataLancamento;
|
||||||
protected String dataMovimento;
|
protected String dataMovimento;
|
||||||
protected String idReceitaDespesa;
|
protected String idReceitaDespesa;
|
||||||
protected String turno;
|
protected String turno;
|
||||||
protected String usuario;
|
protected String usuario;
|
||||||
protected String valorLancamento;
|
protected String valorLancamento;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the agencia property.
|
* Gets the value of the agencia property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getAgencia() {
|
public String getAgencia() {
|
||||||
return agencia;
|
return agencia;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the agencia property.
|
* Sets the value of the agencia property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setAgencia(String value) {
|
public void setAgencia(String value) {
|
||||||
this.agencia = value;
|
this.agencia = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codEmpresa property.
|
* Gets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodEmpresa() {
|
public String getCodEmpresa() {
|
||||||
return codEmpresa;
|
return codEmpresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codEmpresa property.
|
* Sets the value of the codEmpresa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodEmpresa(String value) {
|
public void setCodEmpresa(String value) {
|
||||||
this.codEmpresa = value;
|
this.codEmpresa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codFilial property.
|
* Gets the value of the codFilial property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodFilial() {
|
public String getCodFilial() {
|
||||||
return codFilial;
|
return codFilial;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codFilial property.
|
* Sets the value of the codFilial property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodFilial(String value) {
|
public void setCodFilial(String value) {
|
||||||
this.codFilial = value;
|
this.codFilial = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the codReceitaDespesa property.
|
* Gets the value of the codReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getCodReceitaDespesa() {
|
public String getCodReceitaDespesa() {
|
||||||
return codReceitaDespesa;
|
return codReceitaDespesa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the codReceitaDespesa property.
|
* Sets the value of the codReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setCodReceitaDespesa(String value) {
|
public void setCodReceitaDespesa(String value) {
|
||||||
this.codReceitaDespesa = value;
|
this.codReceitaDespesa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the dataLancamento property.
|
* Gets the value of the dataLancamento property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDataLancamento() {
|
public String getDataLancamento() {
|
||||||
return dataLancamento;
|
return dataLancamento;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the dataLancamento property.
|
* Sets the value of the dataLancamento property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDataLancamento(String value) {
|
public void setDataLancamento(String value) {
|
||||||
this.dataLancamento = value;
|
this.dataLancamento = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the dataMovimento property.
|
* Gets the value of the dataMovimento property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getDataMovimento() {
|
public String getDataMovimento() {
|
||||||
return dataMovimento;
|
return dataMovimento;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the dataMovimento property.
|
* Sets the value of the dataMovimento property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setDataMovimento(String value) {
|
public void setDataMovimento(String value) {
|
||||||
this.dataMovimento = value;
|
this.dataMovimento = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the idReceitaDespesa property.
|
* Gets the value of the idReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getIdReceitaDespesa() {
|
public String getIdReceitaDespesa() {
|
||||||
return idReceitaDespesa;
|
return idReceitaDespesa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the idReceitaDespesa property.
|
* Sets the value of the idReceitaDespesa property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setIdReceitaDespesa(String value) {
|
public void setIdReceitaDespesa(String value) {
|
||||||
this.idReceitaDespesa = value;
|
this.idReceitaDespesa = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the turno property.
|
* Gets the value of the turno property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getTurno() {
|
public String getTurno() {
|
||||||
return turno;
|
return turno;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the turno property.
|
* Sets the value of the turno property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setTurno(String value) {
|
public void setTurno(String value) {
|
||||||
this.turno = value;
|
this.turno = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the usuario property.
|
* Gets the value of the usuario property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getUsuario() {
|
public String getUsuario() {
|
||||||
return usuario;
|
return usuario;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the usuario property.
|
* Sets the value of the usuario property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setUsuario(String value) {
|
public void setUsuario(String value) {
|
||||||
this.usuario = value;
|
this.usuario = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the valorLancamento property.
|
* Gets the value of the valorLancamento property.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* possible object is
|
* possible object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String getValorLancamento() {
|
public String getValorLancamento() {
|
||||||
return valorLancamento;
|
return valorLancamento;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of the valorLancamento property.
|
* Sets the value of the valorLancamento property.
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* allowed object is
|
* allowed object is
|
||||||
* {@link String }
|
* {@link String }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void setValorLancamento(String value) {
|
public void setValorLancamento(String value) {
|
||||||
this.valorLancamento = value;
|
this.valorLancamento = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,18 +1,18 @@
|
||||||
package com.rjconsultores.routing;
|
package com.rjconsultores.routing;
|
||||||
|
|
||||||
public class DynamicDataSourceHolder {
|
public class DynamicDataSourceHolder {
|
||||||
private static ThreadLocal<String> routeKey = new ThreadLocal<String>();
|
private static ThreadLocal<String> routeKey = new ThreadLocal<String>();
|
||||||
|
|
||||||
public static String getRouteKey() {
|
public static String getRouteKey() {
|
||||||
String key = routeKey.get();
|
String key = routeKey.get();
|
||||||
return key;
|
return key;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setRouteKey(String key) {
|
public static void setRouteKey(String key) {
|
||||||
routeKey.set(key);
|
routeKey.set(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void removeRouteKey() {
|
public static void removeRouteKey() {
|
||||||
routeKey.remove();
|
routeKey.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,16 +1,16 @@
|
||||||
package com.rjconsultores.routing;
|
package com.rjconsultores.routing;
|
||||||
|
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;
|
import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;
|
||||||
|
|
||||||
public class MultipleDataSource extends AbstractRoutingDataSource {
|
public class MultipleDataSource extends AbstractRoutingDataSource {
|
||||||
@Override
|
@Override
|
||||||
protected Object determineCurrentLookupKey() {
|
protected Object determineCurrentLookupKey() {
|
||||||
return DynamicDataSourceHolder.getRouteKey();
|
return DynamicDataSourceHolder.getRouteKey();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Logger getParentLogger(){
|
public Logger getParentLogger(){
|
||||||
return Logger.getLogger("MultipleDataSource");
|
return Logger.getLogger("MultipleDataSource");
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,12 +1,12 @@
|
||||||
package com.rjconsultores.routing;
|
package com.rjconsultores.routing;
|
||||||
|
|
||||||
import java.lang.annotation.ElementType;
|
import java.lang.annotation.ElementType;
|
||||||
import java.lang.annotation.Retention;
|
import java.lang.annotation.Retention;
|
||||||
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.RetentionPolicy;
|
||||||
import java.lang.annotation.Target;
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
@Target({ElementType.METHOD, ElementType.TYPE})
|
@Target({ElementType.METHOD, ElementType.TYPE})
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
public @interface ReadOnlyConnection {
|
public @interface ReadOnlyConnection {
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,40 +1,40 @@
|
||||||
package com.rjconsultores.routing;
|
package com.rjconsultores.routing;
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.aspectj.lang.ProceedingJoinPoint;
|
import org.aspectj.lang.ProceedingJoinPoint;
|
||||||
import org.aspectj.lang.annotation.Around;
|
import org.aspectj.lang.annotation.Around;
|
||||||
import org.aspectj.lang.annotation.Aspect;
|
import org.aspectj.lang.annotation.Aspect;
|
||||||
import org.springframework.core.annotation.Order;
|
import org.springframework.core.annotation.Order;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.utilerias.ApplicationProperties;
|
import com.rjconsultores.ventaboletos.utilerias.ApplicationProperties;
|
||||||
|
|
||||||
@Aspect
|
@Aspect
|
||||||
@Component
|
@Component
|
||||||
@Order(0)
|
@Order(0)
|
||||||
public class ReadOnlyRouteInterceptor {
|
public class ReadOnlyRouteInterceptor {
|
||||||
private static final Logger log = LogManager.getLogger(ReadOnlyRouteInterceptor.class);
|
private static final Logger log = LogManager.getLogger(ReadOnlyRouteInterceptor.class);
|
||||||
|
|
||||||
@Around("@annotation(readOnlyConnection)")
|
@Around("@annotation(readOnlyConnection)")
|
||||||
public Object proceed(ProceedingJoinPoint proceedingJoinPoint, ReadOnlyConnection readOnlyConnection) throws Throwable {
|
public Object proceed(ProceedingJoinPoint proceedingJoinPoint, ReadOnlyConnection readOnlyConnection) throws Throwable {
|
||||||
if (ApplicationProperties.getInstance().getReadOnlyConnection()) {
|
if (ApplicationProperties.getInstance().getReadOnlyConnection()) {
|
||||||
try {
|
try {
|
||||||
String className = proceedingJoinPoint.getSignature().getDeclaringTypeName();
|
String className = proceedingJoinPoint.getSignature().getDeclaringTypeName();
|
||||||
String methodName = proceedingJoinPoint.getSignature().getName();
|
String methodName = proceedingJoinPoint.getSignature().getName();
|
||||||
|
|
||||||
log.debug("*** READ *** [" + className + "." + methodName + "()");
|
log.debug("*** READ *** [" + className + "." + methodName + "()");
|
||||||
} catch (Exception e) {}
|
} catch (Exception e) {}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
DynamicDataSourceHolder.setRouteKey("dataSourceRead");
|
DynamicDataSourceHolder.setRouteKey("dataSourceRead");
|
||||||
|
|
||||||
return proceedingJoinPoint.proceed();
|
return proceedingJoinPoint.proceed();
|
||||||
} finally {
|
} finally {
|
||||||
DynamicDataSourceHolder.removeRouteKey();
|
DynamicDataSourceHolder.removeRouteKey();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return proceedingJoinPoint.proceed();
|
return proceedingJoinPoint.proceed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,14 +1,14 @@
|
||||||
package com.rjconsultores.ventaboletos.auditoria;
|
package com.rjconsultores.ventaboletos.auditoria;
|
||||||
|
|
||||||
public class AuditManager {
|
public class AuditManager {
|
||||||
private static AuditControl INSTANCE;
|
private static AuditControl INSTANCE;
|
||||||
|
|
||||||
public static AuditControl getINSTANCE(String currentActionService) {
|
public static AuditControl getINSTANCE(String currentActionService) {
|
||||||
INSTANCE = new AuditControl(currentActionService);
|
INSTANCE = new AuditControl(currentActionService);
|
||||||
return INSTANCE;
|
return INSTANCE;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static AuditControl getINSTANCE() {
|
public static AuditControl getINSTANCE() {
|
||||||
return INSTANCE;
|
return INSTANCE;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,187 +1,187 @@
|
||||||
package com.rjconsultores.ventaboletos.auditoria.interceptor;
|
package com.rjconsultores.ventaboletos.auditoria.interceptor;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.sql.Date;
|
import java.sql.Date;
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.hibernate.Criteria;
|
import org.hibernate.Criteria;
|
||||||
import org.hibernate.EmptyInterceptor;
|
import org.hibernate.EmptyInterceptor;
|
||||||
import org.hibernate.Session;
|
import org.hibernate.Session;
|
||||||
import org.hibernate.SessionFactory;
|
import org.hibernate.SessionFactory;
|
||||||
import org.hibernate.criterion.Restrictions;
|
import org.hibernate.criterion.Restrictions;
|
||||||
import org.hibernate.type.Type;
|
import org.hibernate.type.Type;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.auditoria.AuditControl;
|
import com.rjconsultores.ventaboletos.auditoria.AuditControl;
|
||||||
import com.rjconsultores.ventaboletos.auditoria.AuditManager;
|
import com.rjconsultores.ventaboletos.auditoria.AuditManager;
|
||||||
import com.rjconsultores.ventaboletos.dao.util.DBUtil;
|
import com.rjconsultores.ventaboletos.dao.util.DBUtil;
|
||||||
import com.rjconsultores.ventaboletos.entidad.AuditLog;
|
import com.rjconsultores.ventaboletos.entidad.AuditLog;
|
||||||
import com.rjconsultores.ventaboletos.entidad.AuditService;
|
import com.rjconsultores.ventaboletos.entidad.AuditService;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Constante;
|
import com.rjconsultores.ventaboletos.entidad.Constante;
|
||||||
import com.rjconsultores.ventaboletos.entidad.FuncionSistema;
|
import com.rjconsultores.ventaboletos.entidad.FuncionSistema;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Sistema;
|
import com.rjconsultores.ventaboletos.entidad.Sistema;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Usuario;
|
import com.rjconsultores.ventaboletos.entidad.Usuario;
|
||||||
import com.rjconsultores.ventaboletos.enums.auditoria.EnumAuditAction;
|
import com.rjconsultores.ventaboletos.enums.auditoria.EnumAuditAction;
|
||||||
import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado;
|
import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado;
|
||||||
|
|
||||||
public class AuditInterceptor extends EmptyInterceptor {
|
public class AuditInterceptor extends EmptyInterceptor {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
private static final Logger log = LogManager.getLogger(AuditInterceptor.class);
|
private static final Logger log = LogManager.getLogger(AuditInterceptor.class);
|
||||||
|
|
||||||
private static final String ACTIVO = "activo";
|
private static final String ACTIVO = "activo";
|
||||||
|
|
||||||
// Considera que o ADM sempre tenha o ID igual a 1
|
// Considera que o ADM sempre tenha o ID igual a 1
|
||||||
private Integer SISTEMA_ID = 1;
|
private Integer SISTEMA_ID = 1;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onSave(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) {
|
public boolean onSave(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) {
|
||||||
final SessionFactory sessionFactory = DBUtil.getInstance().getSessionFactory();
|
final SessionFactory sessionFactory = DBUtil.getInstance().getSessionFactory();
|
||||||
final Session session = sessionFactory.openSession();
|
final Session session = sessionFactory.openSession();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
genAudit(session, entity, EnumAuditAction.CRIACAO);
|
genAudit(session, entity, EnumAuditAction.CRIACAO);
|
||||||
} catch (Exception exception) {
|
} catch (Exception exception) {
|
||||||
log.error(exception.getMessage(), exception);
|
log.error(exception.getMessage(), exception);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (session != null) {
|
if (session != null) {
|
||||||
session.close();
|
session.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
return super.onSave(entity, id, state, propertyNames, types);
|
return super.onSave(entity, id, state, propertyNames, types);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onFlushDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) {
|
public boolean onFlushDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) {
|
||||||
final SessionFactory sessionFactory = DBUtil.getInstance().getSessionFactory();
|
final SessionFactory sessionFactory = DBUtil.getInstance().getSessionFactory();
|
||||||
final Session session = sessionFactory.openSession();
|
final Session session = sessionFactory.openSession();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
genAudit(session, entity, EnumAuditAction.ALTERACAO);
|
genAudit(session, entity, EnumAuditAction.ALTERACAO);
|
||||||
} catch (Exception exception) {
|
} catch (Exception exception) {
|
||||||
log.error(exception.getMessage(), exception);
|
log.error(exception.getMessage(), exception);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (session != null) {
|
if (session != null) {
|
||||||
session.close();
|
session.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
return super.onFlushDirty(entity, id, currentState, previousState, propertyNames, types);
|
return super.onFlushDirty(entity, id, currentState, previousState, propertyNames, types);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDelete(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) {
|
public void onDelete(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) {
|
||||||
final SessionFactory sessionFactory = DBUtil.getInstance().getSessionFactory();
|
final SessionFactory sessionFactory = DBUtil.getInstance().getSessionFactory();
|
||||||
final Session session = sessionFactory.openSession();
|
final Session session = sessionFactory.openSession();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
genAudit(session, entity, EnumAuditAction.EXCLUSAO);
|
genAudit(session, entity, EnumAuditAction.EXCLUSAO);
|
||||||
} catch (Exception exception) {
|
} catch (Exception exception) {
|
||||||
log.error(exception.getMessage(), exception);
|
log.error(exception.getMessage(), exception);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (session != null) {
|
if (session != null) {
|
||||||
session.close();
|
session.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
super.onDelete(entity, id, state, propertyNames, types);
|
super.onDelete(entity, id, state, propertyNames, types);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void genAudit(final Session session, Object entity, EnumAuditAction action) {
|
private void genAudit(final Session session, Object entity, EnumAuditAction action) {
|
||||||
if (!getAuditModuleService(session)) {
|
if (!getAuditModuleService(session)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
/**
|
/**
|
||||||
* Ignorado caso a entidade for de auditoria e se não for encontrado o módulo no banco
|
* Ignorado caso a entidade for de auditoria e se não for encontrado o módulo no banco
|
||||||
*/
|
*/
|
||||||
if (!(entity instanceof AuditLog)) {
|
if (!(entity instanceof AuditLog)) {
|
||||||
AuditService service = AuditManager.getINSTANCE().getCurrentService();
|
AuditService service = AuditManager.getINSTANCE().getCurrentService();
|
||||||
|
|
||||||
if (!(entity instanceof AuditLog) && service != null && service.getModule() != null) {
|
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
|
* 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()) {
|
if (service.getModule().getIndAuditable()) {
|
||||||
AuditLog audit = new AuditLog();
|
AuditLog audit = new AuditLog();
|
||||||
audit.setCreatedDate(new Date(System.currentTimeMillis()));
|
audit.setCreatedDate(new Date(System.currentTimeMillis()));
|
||||||
audit.setEntityName(entity.getClass().getSimpleName());
|
audit.setEntityName(entity.getClass().getSimpleName());
|
||||||
audit.setService(service);
|
audit.setService(service);
|
||||||
audit.setEntityDetail(AuditControl.toJson(entity));
|
audit.setEntityDetail(AuditControl.toJson(entity));
|
||||||
|
|
||||||
Sistema sistema = new Sistema();
|
Sistema sistema = new Sistema();
|
||||||
sistema.setSistemaId(SISTEMA_ID);
|
sistema.setSistemaId(SISTEMA_ID);
|
||||||
audit.setSistema(sistema);
|
audit.setSistema(sistema);
|
||||||
|
|
||||||
audit.setAction(action.getId());
|
audit.setAction(action.getId());
|
||||||
audit.setUsuario(UsuarioLogado.getUsuarioLogado() != null ? UsuarioLogado.getUsuarioLogado() : new Usuario(1));
|
audit.setUsuario(UsuarioLogado.getUsuarioLogado() != null ? UsuarioLogado.getUsuarioLogado() : new Usuario(1));
|
||||||
|
|
||||||
session.persist(audit);
|
session.persist(audit);
|
||||||
session.flush();
|
session.flush();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (Exception exception) {
|
} catch (Exception exception) {
|
||||||
log.error(exception.getMessage(), exception);
|
log.error(exception.getMessage(), exception);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean getAuditModuleService(final Session session) {
|
private boolean getAuditModuleService(final Session session) {
|
||||||
if (AuditManager.getINSTANCE() != null && AuditManager.getINSTANCE().getAuditar() == null) {
|
if (AuditManager.getINSTANCE() != null && AuditManager.getINSTANCE().getAuditar() == null) {
|
||||||
Criteria criteriaAuditar = session.createCriteria(Constante.class);
|
Criteria criteriaAuditar = session.createCriteria(Constante.class);
|
||||||
criteriaAuditar.add(Restrictions.eq("nombconstante", "AUDITAR_SISTEMA"));
|
criteriaAuditar.add(Restrictions.eq("nombconstante", "AUDITAR_SISTEMA"));
|
||||||
criteriaAuditar.add(Restrictions.eq(ACTIVO, Boolean.TRUE));
|
criteriaAuditar.add(Restrictions.eq(ACTIVO, Boolean.TRUE));
|
||||||
Constante constante = (Constante) criteriaAuditar.uniqueResult();
|
Constante constante = (Constante) criteriaAuditar.uniqueResult();
|
||||||
|
|
||||||
Boolean auditar = Boolean.FALSE;
|
Boolean auditar = Boolean.FALSE;
|
||||||
|
|
||||||
if (constante != null) {
|
if (constante != null) {
|
||||||
try {
|
try {
|
||||||
auditar = Boolean.valueOf(constante.getValorconstante());
|
auditar = Boolean.valueOf(constante.getValorconstante());
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.error(e.getMessage(), e);
|
log.error(e.getMessage(), e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
AuditManager.getINSTANCE().setAuditar(auditar);
|
AuditManager.getINSTANCE().setAuditar(auditar);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (AuditManager.getINSTANCE() == null || AuditManager.getINSTANCE().getAuditar() == null || !AuditManager.getINSTANCE().getAuditar()) {
|
if (AuditManager.getINSTANCE() == null || AuditManager.getINSTANCE().getAuditar() == null || !AuditManager.getINSTANCE().getAuditar()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!AuditManager.getINSTANCE().getCheckModuleAudit()) {
|
if (!AuditManager.getINSTANCE().getCheckModuleAudit()) {
|
||||||
return AuditManager.getINSTANCE().getCurrentService() != null ? true : false;
|
return AuditManager.getINSTANCE().getCurrentService() != null ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
AuditService auditService = null;
|
AuditService auditService = null;
|
||||||
|
|
||||||
Criteria criteriaFuncionSistema = session.createCriteria(FuncionSistema.class);
|
Criteria criteriaFuncionSistema = session.createCriteria(FuncionSistema.class);
|
||||||
criteriaFuncionSistema.add(Restrictions.eq("descruta", AuditManager.getINSTANCE().getCurrentActionService()));
|
criteriaFuncionSistema.add(Restrictions.eq("descruta", AuditManager.getINSTANCE().getCurrentActionService()));
|
||||||
FuncionSistema funcionSistema = (FuncionSistema) criteriaFuncionSistema.uniqueResult();
|
FuncionSistema funcionSistema = (FuncionSistema) criteriaFuncionSistema.uniqueResult();
|
||||||
|
|
||||||
if (funcionSistema == null) {
|
if (funcionSistema == null) {
|
||||||
log.info("Função sistema " + funcionSistema + " não encontrada na base de dados.");
|
log.info("Função sistema " + funcionSistema + " não encontrada na base de dados.");
|
||||||
AuditManager.getINSTANCE().setCurrentService(auditService);
|
AuditManager.getINSTANCE().setCurrentService(auditService);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
Criteria criteriaService = session.createCriteria(AuditService.class);
|
Criteria criteriaService = session.createCriteria(AuditService.class);
|
||||||
criteriaService.add(Restrictions.eq("funcionSistema", funcionSistema));
|
criteriaService.add(Restrictions.eq("funcionSistema", funcionSistema));
|
||||||
auditService = (AuditService) criteriaService.uniqueResult();
|
auditService = (AuditService) criteriaService.uniqueResult();
|
||||||
|
|
||||||
if (auditService == null) {
|
if (auditService == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
AuditManager.getINSTANCE().setCurrentService(auditService);
|
AuditManager.getINSTANCE().setCurrentService(auditService);
|
||||||
AuditManager.getINSTANCE().setCheckModuleAudit(Boolean.FALSE);
|
AuditManager.getINSTANCE().setCheckModuleAudit(Boolean.FALSE);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,160 +1,160 @@
|
||||||
package com.rjconsultores.ventaboletos.constantes;
|
package com.rjconsultores.ventaboletos.constantes;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
public class Constantes {
|
public class Constantes {
|
||||||
|
|
||||||
public static final Long FORMA_PAGO_DINHEIRO = 1L;
|
public static final Long FORMA_PAGO_DINHEIRO = 1L;
|
||||||
public static final Long FORMA_PAGO_CREDITO = 2L;
|
public static final Long FORMA_PAGO_CREDITO = 2L;
|
||||||
public static final Long FORMA_PAGO_DEBITO = 3L;
|
public static final Long FORMA_PAGO_DEBITO = 3L;
|
||||||
public static final Long FORMA_PAGO_TROCA_PASSAGEM = 10L;
|
public static final Long FORMA_PAGO_TROCA_PASSAGEM = 10L;
|
||||||
public static final Long FORMA_PAGO_ORDEN_SERVICIO = 11L;
|
public static final Long FORMA_PAGO_ORDEN_SERVICIO = 11L;
|
||||||
public static final Long FORMA_PAGO_GERACAO_OCD = 35L;
|
public static final Long FORMA_PAGO_GERACAO_OCD = 35L;
|
||||||
public static final Long FORMA_PAGO_NOTA_CREDITO = 93L;
|
public static final Long FORMA_PAGO_NOTA_CREDITO = 93L;
|
||||||
public static final Long FORMA_PAGO_RESERVA = 94L;
|
public static final Long FORMA_PAGO_RESERVA = 94L;
|
||||||
|
|
||||||
|
|
||||||
public static final Long MVO_CANCEL_CANCELACION = 31L;
|
public static final Long MVO_CANCEL_CANCELACION = 31L;
|
||||||
public static final Long MVO_CANCEL_DEVOLUCAO = 32L;
|
public static final Long MVO_CANCEL_DEVOLUCAO = 32L;
|
||||||
public static final Long MVO_CANCEL_DEVOLUCAO_CONTIGENCIA_50 = 36L;
|
public static final Long MVO_CANCEL_DEVOLUCAO_CONTIGENCIA_50 = 36L;
|
||||||
public static final Long MVO_CANCEL_DEVOLUCAO_CONTIGENCIA_100 = 37L;
|
public static final Long MVO_CANCEL_DEVOLUCAO_CONTIGENCIA_100 = 37L;
|
||||||
public static final Long MVO_CANCEL_TROCA = 10L;
|
public static final Long MVO_CANCEL_TROCA = 10L;
|
||||||
public static final Long MVO_CANCEL_CHECKIN = 27L;
|
public static final Long MVO_CANCEL_CHECKIN = 27L;
|
||||||
public static final Long MVO_CANCEL_TRANSFERENCIA = 23L;
|
public static final Long MVO_CANCEL_TRANSFERENCIA = 23L;
|
||||||
public static final Long MVO_CANCEL_BOLETO_ENTREGADO = 16L;
|
public static final Long MVO_CANCEL_BOLETO_ENTREGADO = 16L;
|
||||||
public static final Long MVO_CANCEL_BOLETO_AGRUPAMENTO = 17L;
|
public static final Long MVO_CANCEL_BOLETO_AGRUPAMENTO = 17L;
|
||||||
public static final Long MVO_CANCEL_GERACAO_OCD = 99L;
|
public static final Long MVO_CANCEL_GERACAO_OCD = 99L;
|
||||||
public static final Long MVO_CANCEL_QUITACAO_OCD = 35L;
|
public static final Long MVO_CANCEL_QUITACAO_OCD = 35L;
|
||||||
public static final Long MVO_CANCEL_VENDA_PACOTE = 33L;
|
public static final Long MVO_CANCEL_VENDA_PACOTE = 33L;
|
||||||
public static final Long ORGAO_CONCEDENTE_ID_AGERBA = 27L;
|
public static final Long ORGAO_CONCEDENTE_ID_AGERBA = 27L;
|
||||||
|
|
||||||
public static final Long TPV_DIRECTO_NORMAL = 1L;
|
public static final Long TPV_DIRECTO_NORMAL = 1L;
|
||||||
public static final Long TPV_MANUAL = 3L;
|
public static final Long TPV_MANUAL = 3L;
|
||||||
public static final Long TPV_CALL_CENTER = 5L;
|
public static final Long TPV_CALL_CENTER = 5L;
|
||||||
public static final Long TPV_BOLETO_REMOTO = 18L;
|
public static final Long TPV_BOLETO_REMOTO = 18L;
|
||||||
public static final Long TPV_TRANSFERENCIAS = 8L; // é a troca de passagens
|
public static final Long TPV_TRANSFERENCIAS = 8L; // é a troca de passagens
|
||||||
public static final Long TPV_CAMBIO_VIAJE = 81L; // é a transferência de passagens
|
public static final Long TPV_CAMBIO_VIAJE = 81L; // é a transferência de passagens
|
||||||
public static final Long TPV_CHECKIN_VIAGEM = 41L; // chekin boletos
|
public static final Long TPV_CHECKIN_VIAGEM = 41L; // chekin boletos
|
||||||
public static final Long TPV_BOLETO_ABIERTO = 9L;
|
public static final Long TPV_BOLETO_ABIERTO = 9L;
|
||||||
public static final Long TPV_CONFIRMA_ABIERTO = 82L;
|
public static final Long TPV_CONFIRMA_ABIERTO = 82L;
|
||||||
public static final Long TPV_VENDA_BOLETO_ABERTO_MANUAL = 39L;
|
public static final Long TPV_VENDA_BOLETO_ABERTO_MANUAL = 39L;
|
||||||
|
|
||||||
public static final Long TPV_RESERVACION_POR_INTERNET = 16L;
|
public static final Long TPV_RESERVACION_POR_INTERNET = 16L;
|
||||||
public static final Long TPV_POR_INTERNET = 12L;
|
public static final Long TPV_POR_INTERNET = 12L;
|
||||||
public static final Long TPV_AGENCIA_WEB = 19L;
|
public static final Long TPV_AGENCIA_WEB = 19L;
|
||||||
|
|
||||||
public static final Integer TIPO_OPERACION_CC_LQ = 1;
|
public static final Integer TIPO_OPERACION_CC_LQ = 1;
|
||||||
public static final Integer TIPO_OPERACION_CC_PAGO = 2;
|
public static final Integer TIPO_OPERACION_CC_PAGO = 2;
|
||||||
|
|
||||||
public static final Integer ARTICULO_VENTA = 1;
|
public static final Integer ARTICULO_VENTA = 1;
|
||||||
public static final Integer ARTICULO_OUTROS = 2;
|
public static final Integer ARTICULO_OUTROS = 2;
|
||||||
public static final Integer ARTICULO_MANUAL = 3;
|
public static final Integer ARTICULO_MANUAL = 3;
|
||||||
|
|
||||||
public static final Short TURNO_AUTOMATICO = new Short("99");
|
public static final Short TURNO_AUTOMATICO = new Short("99");
|
||||||
|
|
||||||
public static final String IMAGEM_EMPRESA = "EMPRESA_BACKGROUND";
|
public static final String IMAGEM_EMPRESA = "EMPRESA_BACKGROUND";
|
||||||
public static final String IMAGEM_EMPRESA_GENERICA = "EMPRESA_BACKGROUND_GENERICA";
|
public static final String IMAGEM_EMPRESA_GENERICA = "EMPRESA_BACKGROUND_GENERICA";
|
||||||
|
|
||||||
public static final String ORGAO_CONCEDENTE_STRING_AGERBA = "AGERBA";
|
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})) ;
|
public static List<Integer> ORGAOS_CONCEDENTES_CALCULO_ARTESP = new ArrayList<Integer>(Arrays.asList(new Integer[]{21})) ;
|
||||||
/*
|
/*
|
||||||
3 ANTT
|
3 ANTT
|
||||||
4 AGEPAN
|
4 AGEPAN
|
||||||
2 DER/PR
|
2 DER/PR
|
||||||
6 DER/MG
|
6 DER/MG
|
||||||
9 DER/RJ
|
9 DER/RJ
|
||||||
15 DER/SC
|
15 DER/SC
|
||||||
16 DER/GO
|
16 DER/GO
|
||||||
22 DETRO/RJ
|
22 DETRO/RJ
|
||||||
10 DER/ES
|
10 DER/ES
|
||||||
25 Pref de Ibatiba
|
25 Pref de Ibatiba
|
||||||
26 Pref de João Neiva
|
26 Pref de João Neiva
|
||||||
27 AGERBA
|
27 AGERBA
|
||||||
28 DER/RO
|
28 DER/RO
|
||||||
30 DETER
|
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}));
|
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
|
* 5 - DER/MT
|
||||||
* 23 - Pref.Marilia
|
* 23 - Pref.Marilia
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static List<Integer> ORGAOS_CONCEDENTES_CALCULO_AGER = new ArrayList<Integer>(Arrays.asList(new Integer[]{5,23}));
|
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 UTF_8 = "UTF-8";
|
||||||
public static final String CHARSET_UTF8 = ";charset=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_DIARIO = 1;
|
||||||
public static final int INTERVALO_FECHAMENTO_SEMANAL = 7;
|
public static final int INTERVALO_FECHAMENTO_SEMANAL = 7;
|
||||||
public static final int INTERVALO_FECHAMENTO_DECENDIAL = 10;
|
public static final int INTERVALO_FECHAMENTO_DECENDIAL = 10;
|
||||||
public static final int INTERVALO_FECHAMENTO_QUINZENAL = 15;
|
public static final int INTERVALO_FECHAMENTO_QUINZENAL = 15;
|
||||||
public static final int INTERVALO_FECHAMENTO_MENSAL = 30;
|
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 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 DESCONTO_COMPONENTE_PRECO = "DESCONTO_COMPONENTE_PRECO";
|
||||||
|
|
||||||
public static final String TEMPO_LIMITE_PEN_PARAM_OCD = "TEMPO_LIMITE_PEN_PARAM_OCD";
|
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 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 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 final String RETER_COMISSAO_ADM_FECHAMENTO_CAIXA = "RETER_COMISSAO_ADM_FECHAMENTO_CAIXA";
|
||||||
|
|
||||||
public enum FiltroEnviadosSefaz { SIM, NAO, TODOS };
|
public enum FiltroEnviadosSefaz { SIM, NAO, TODOS };
|
||||||
|
|
||||||
public static final String CVESISTEMA_MOTIVO_CANCELAMENTO_ALTERACAO_POLTRONA = "ALTERACAO_POLTRONA";
|
public static final String CVESISTEMA_MOTIVO_CANCELAMENTO_ALTERACAO_POLTRONA = "ALTERACAO_POLTRONA";
|
||||||
|
|
||||||
public static final String BPE_ALTERACAO_POLTRONA = "110116";
|
public static final String BPE_ALTERACAO_POLTRONA = "110116";
|
||||||
|
|
||||||
public static final String ESTACAO_EMBARCADA = "ESTACAO_EMBARCADA";
|
public static final String ESTACAO_EMBARCADA = "ESTACAO_EMBARCADA";
|
||||||
|
|
||||||
public static final Integer CATEGORIA_NORMAL = 1;
|
public static final Integer CATEGORIA_NORMAL = 1;
|
||||||
|
|
||||||
public static final String BPE_AMBIENTE = "BPE_AMBIENTE";
|
public static final String BPE_AMBIENTE = "BPE_AMBIENTE";
|
||||||
|
|
||||||
public static final String BPE_URL = "BPE_URL";
|
public static final String BPE_URL = "BPE_URL";
|
||||||
|
|
||||||
public static final String BPE_URL_CONTIG = "BPE_URL_CONTIG_";
|
public static final String BPE_URL_CONTIG = "BPE_URL_CONTIG_";
|
||||||
|
|
||||||
public static final String RELATORIO_BPE_OTIMIZADO = "RELATORIO_BPE_OTIMIZADO";
|
public static final String RELATORIO_BPE_OTIMIZADO = "RELATORIO_BPE_OTIMIZADO";
|
||||||
|
|
||||||
public static final String URL_PAINEL_EMBARCADA = "URL_PAINEL_EMBARCADA";
|
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 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_EMAIL = "SMTP_COMISSAO_EMAIL";
|
||||||
|
|
||||||
public static final String SMTP_COMISSAO_HOST = "SMTP_COMISSAO_HOST";
|
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_AUTENTICACAO = "SMTP_COMISSAO_AUTENTICACAO";
|
||||||
|
|
||||||
public static final String SMTP_COMISSAO_PASS = "SMTP_COMISSAO_PASS";
|
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_PORT = "SMTP_COMISSAO_PORT";
|
||||||
|
|
||||||
public static final String SMTP_COMISSAO_USER = "SMTP_COMISSAO_USER";
|
public static final String SMTP_COMISSAO_USER = "SMTP_COMISSAO_USER";
|
||||||
|
|
||||||
public static final String TIPO_OCUPACAO_SEM_VALIDACAO = "TIPO_OCUPACAO_SEM_VALIDACAO";
|
public static final String TIPO_OCUPACAO_SEM_VALIDACAO = "TIPO_OCUPACAO_SEM_VALIDACAO";
|
||||||
|
|
||||||
public static final String CNPJ_OBRIGATORIO_ORDEN_SERVICO = "CNPJ_OBRIGATORIO_ORDEN_SERVICO";
|
public static final String CNPJ_OBRIGATORIO_ORDEN_SERVICO = "CNPJ_OBRIGATORIO_ORDEN_SERVICO";
|
||||||
|
|
||||||
|
|
||||||
public static final String NUM_ASIENTO_CON_LETRA = "NUM_ASIENTO_CON_LETRA";
|
public static final String NUM_ASIENTO_CON_LETRA = "NUM_ASIENTO_CON_LETRA";
|
||||||
|
|
||||||
public static final String DESATIVAR_OBR_CAM_EMPRESA_IMPOSTO = "DESATIVAR_OBR_CAM_EMPRESA_IMPOSTO";
|
public static final String DESATIVAR_OBR_CAM_EMPRESA_IMPOSTO = "DESATIVAR_OBR_CAM_EMPRESA_IMPOSTO";
|
||||||
|
|
||||||
public static final Integer PERFIL_ADM_CONTRATO = 32;
|
public static final Integer PERFIL_ADM_CONTRATO = 32;
|
||||||
|
|
||||||
public static final String NUM_VIAJE_9_DIGITOS = "NUM_VIAJE_9_DIGITOS";
|
public static final String NUM_VIAJE_9_DIGITOS = "NUM_VIAJE_9_DIGITOS";
|
||||||
|
|
||||||
private Constantes() {
|
private Constantes() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,49 +1,49 @@
|
||||||
package com.rjconsultores.ventaboletos.constantes;
|
package com.rjconsultores.ventaboletos.constantes;
|
||||||
|
|
||||||
public class ConstantesFuncionSistema {
|
public class ConstantesFuncionSistema {
|
||||||
|
|
||||||
private ConstantesFuncionSistema() {
|
private ConstantesFuncionSistema() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final String CLAVE_EDITAR_USUARIO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.SEGURIDAD.MENU.USUARIO";
|
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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_MODIFICACAO_EMBARCADA = "COM.RJCONSULTORES.ADMINISTRACION.GUI.TARIFAS.MENU.MODIFICACIONMASIVAEMBARCADA";
|
||||||
public static final String CLAVE_AUTORIZACAO_RUTA = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.AUTORIZACAORUTA";
|
public static final String CLAVE_AUTORIZACAO_RUTA = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.AUTORIZACAORUTA";
|
||||||
|
|
||||||
public static final String CLAVE_MENU_GESTAO_PRICING = "COM.RJCONSULTORES.ADMINISTRACION.GUI.GESTAODEPRICING";
|
public static final String CLAVE_MENU_GESTAO_PRICING = "COM.RJCONSULTORES.ADMINISTRACION.GUI.GESTAODEPRICING";
|
||||||
public static final String CLAVE_GESTAO_PRICING_ESPECIFICO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.GESTAODEPRICING.PRICINGESPECIFICO";
|
public static final String CLAVE_GESTAO_PRICING_ESPECIFICO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.GESTAODEPRICING.PRICINGESPECIFICO";
|
||||||
public static final String CLAVE_GESTAO_PRICING = "COM.RJCONSULTORES.ADMINISTRACION.GUI.GESTAODEPRICING.PRICING";
|
public static final String CLAVE_GESTAO_PRICING = "COM.RJCONSULTORES.ADMINISTRACION.GUI.GESTAODEPRICING.PRICING";
|
||||||
public static final String CLAVE_TELA_GESTAO_PRICING = "COM.RJCONSULTORES.ADMINISTRACION.GUI.GESTAODEPRICING.GESTAOPRICING";
|
public static final String CLAVE_TELA_GESTAO_PRICING = "COM.RJCONSULTORES.ADMINISTRACION.GUI.GESTAODEPRICING.GESTAOPRICING";
|
||||||
public static final String CLAVE_MENU_RELATORIOS_MUDANCAS = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.RELATORIOSDEMUDANCAS";
|
public static final String CLAVE_MENU_RELATORIOS_MUDANCAS = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.RELATORIOSDEMUDANCAS";
|
||||||
public static final String CLAVE_MENU_RELATORIOS_MUDANCAS_PRICING = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.RELATORIOSDEMUDANCAS.RELATORIOSDEMUDANCASPRICING";
|
public static final String CLAVE_MENU_RELATORIOS_MUDANCAS_PRICING = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.RELATORIOSDEMUDANCAS.RELATORIOSDEMUDANCASPRICING";
|
||||||
|
|
||||||
public static final String CLAVE_MENU_RELATORIOS_VIAJAR_DETALHADO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.RELATORIOSESTATISTICOS.PASSAGEIROSVIAJARDETALHADO";
|
public static final String CLAVE_MENU_RELATORIOS_VIAJAR_DETALHADO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.RELATORIOSESTATISTICOS.PASSAGEIROSVIAJARDETALHADO";
|
||||||
public static final String FUNCION_RECOLECCION = "COM.RJCONSULTORES.ADMINISTRACION.PUNTOVENTA.RECOLECCION";
|
public static final String FUNCION_RECOLECCION = "COM.RJCONSULTORES.ADMINISTRACION.PUNTOVENTA.RECOLECCION";
|
||||||
|
|
||||||
public static final String CLAVE_INTEGRACAO_COMPROVANTE_PASSAGEM = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.INTEGRACAOCOMPROVANTEPASSAGEM";
|
public static final String CLAVE_INTEGRACAO_COMPROVANTE_PASSAGEM = "COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.MENU.INTEGRACAOCOMPROVANTEPASSAGEM";
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
package com.rjconsultores.ventaboletos.constantes;
|
package com.rjconsultores.ventaboletos.constantes;
|
||||||
|
|
||||||
public interface ConstantesTipoDesconto {
|
public interface ConstantesTipoDesconto {
|
||||||
int DESCONTO_POR_NUMERO_DOCUMENTO = 1,
|
int DESCONTO_POR_NUMERO_DOCUMENTO = 1,
|
||||||
DESCONTO_POR_QUANTIDADE = 2,
|
DESCONTO_POR_QUANTIDADE = 2,
|
||||||
TIPO_DESCONTO_NAO_INFORMADO = 0;
|
TIPO_DESCONTO_NAO_INFORMADO = 0;
|
||||||
}
|
}
|
|
@ -1,8 +1,8 @@
|
||||||
package com.rjconsultores.ventaboletos.constantes;
|
package com.rjconsultores.ventaboletos.constantes;
|
||||||
|
|
||||||
public interface ConstantesTipoValidaVenta {
|
public interface ConstantesTipoValidaVenta {
|
||||||
String COD_AGENCIA = "A";
|
String COD_AGENCIA = "A";
|
||||||
String COD_MOTORISTA = "M";
|
String COD_MOTORISTA = "M";
|
||||||
String AGENCIA = "AGENCIA";
|
String AGENCIA = "AGENCIA";
|
||||||
String MOTORISTA = "MOTORISTA";
|
String MOTORISTA = "MOTORISTA";
|
||||||
}
|
}
|
|
@ -1,11 +1,11 @@
|
||||||
package com.rjconsultores.ventaboletos.constantes;
|
package com.rjconsultores.ventaboletos.constantes;
|
||||||
|
|
||||||
public class ConstantesVendaEmbarcada {
|
public class ConstantesVendaEmbarcada {
|
||||||
|
|
||||||
public static final int VENDA_GERADA = 0;
|
public static final int VENDA_GERADA = 0;
|
||||||
public static final int VENDA_BOLETO_ERROR = 1;
|
public static final int VENDA_BOLETO_ERROR = 1;
|
||||||
public static final int VENDA_BOLETO_FORMAPAGO_ERROR = 2;
|
public static final int VENDA_BOLETO_FORMAPAGO_ERROR = 2;
|
||||||
public static final int VENDA_CAJA_ERROR = 3;
|
public static final int VENDA_CAJA_ERROR = 3;
|
||||||
public static final int VENDA_CAJA_FORMAPAGO_ERROR = 4;
|
public static final int VENDA_CAJA_FORMAPAGO_ERROR = 4;
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,24 +1,24 @@
|
||||||
package com.rjconsultores.ventaboletos.constantes;
|
package com.rjconsultores.ventaboletos.constantes;
|
||||||
|
|
||||||
public class DescricaoTipoVenta {
|
public class DescricaoTipoVenta {
|
||||||
|
|
||||||
public static String getDescricaoTipoVenta(Integer tipoVentaId) {
|
public static String getDescricaoTipoVenta(Integer tipoVentaId) {
|
||||||
if(Constantes.TPV_DIRECTO_NORMAL.intValue() == tipoVentaId) {
|
if(Constantes.TPV_DIRECTO_NORMAL.intValue() == tipoVentaId) {
|
||||||
return "NORMAL";
|
return "NORMAL";
|
||||||
} else if(Constantes.TPV_MANUAL.intValue() == tipoVentaId) {
|
} else if(Constantes.TPV_MANUAL.intValue() == tipoVentaId) {
|
||||||
return "MANUAL";
|
return "MANUAL";
|
||||||
} else if(Constantes.TPV_BOLETO_REMOTO.intValue() == tipoVentaId) {
|
} else if(Constantes.TPV_BOLETO_REMOTO.intValue() == tipoVentaId) {
|
||||||
return "GAP";
|
return "GAP";
|
||||||
} else if(Constantes.TPV_TRANSFERENCIAS.intValue() == tipoVentaId) {
|
} else if(Constantes.TPV_TRANSFERENCIAS.intValue() == tipoVentaId) {
|
||||||
return "TRANSFERENCIA";
|
return "TRANSFERENCIA";
|
||||||
} else if(Constantes.TPV_CAMBIO_VIAJE.intValue() == tipoVentaId) {
|
} else if(Constantes.TPV_CAMBIO_VIAJE.intValue() == tipoVentaId) {
|
||||||
return "TROCA PASSAGEM";
|
return "TROCA PASSAGEM";
|
||||||
} else if(Constantes.TPV_CHECKIN_VIAGEM.intValue() == tipoVentaId) {
|
} else if(Constantes.TPV_CHECKIN_VIAGEM.intValue() == tipoVentaId) {
|
||||||
return "CHECKIN VIAGEM";
|
return "CHECKIN VIAGEM";
|
||||||
} else if(Constantes.TPV_BOLETO_ABIERTO.intValue() == tipoVentaId) {
|
} else if(Constantes.TPV_BOLETO_ABIERTO.intValue() == tipoVentaId) {
|
||||||
return "BOLETO ABERTO";
|
return "BOLETO ABERTO";
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,41 +1,41 @@
|
||||||
package com.rjconsultores.ventaboletos.constantes;
|
package com.rjconsultores.ventaboletos.constantes;
|
||||||
|
|
||||||
public enum TipoEventoExtra {
|
public enum TipoEventoExtra {
|
||||||
|
|
||||||
OUTRO("OUTRO"),
|
OUTRO("OUTRO"),
|
||||||
SEGURO_OPCIONAL("SEGURO_OPCIONAL"),
|
SEGURO_OPCIONAL("SEGURO_OPCIONAL"),
|
||||||
EXCESSO_BAGAGEM("EXCESSO_BAGAGEM"),
|
EXCESSO_BAGAGEM("EXCESSO_BAGAGEM"),
|
||||||
TAXA_EMBARQUE("TAXA_EMBARQUE"),
|
TAXA_EMBARQUE("TAXA_EMBARQUE"),
|
||||||
SEGURO_RESSARCIMENTO("SEGURO_RESSARCIMENTO"),
|
SEGURO_RESSARCIMENTO("SEGURO_RESSARCIMENTO"),
|
||||||
TAXA_EMBARQUE_RESSARCIMENTO("TAXA_EMBARQUE_RESSARCIMENTO"),
|
TAXA_EMBARQUE_RESSARCIMENTO("TAXA_EMBARQUE_RESSARCIMENTO"),
|
||||||
MULTA("MULTA"),
|
MULTA("MULTA"),
|
||||||
DIF_MAIOR("DIF_MAIOR"),
|
DIF_MAIOR("DIF_MAIOR"),
|
||||||
DIF_MENOR("DIF_MENOR"),
|
DIF_MENOR("DIF_MENOR"),
|
||||||
SUPRIMENTO("SUPRIMENTO"),
|
SUPRIMENTO("SUPRIMENTO"),
|
||||||
SANGRIA("SANGRIA"),
|
SANGRIA("SANGRIA"),
|
||||||
RECARGA_CELULAR("RECARGA_CELULAR"),
|
RECARGA_CELULAR("RECARGA_CELULAR"),
|
||||||
RECARGA_TV("RECARGA_TV"),
|
RECARGA_TV("RECARGA_TV"),
|
||||||
RECARGA_PIN("RECARGA_PIN"),
|
RECARGA_PIN("RECARGA_PIN"),
|
||||||
PACOTE("PACOTE"),
|
PACOTE("PACOTE"),
|
||||||
SMART_CARD("SMART_CARD"),
|
SMART_CARD("SMART_CARD"),
|
||||||
TAXA_CONVENIENCIA_SVI("TAXA_CONVENIENCIA_SVI"),
|
TAXA_CONVENIENCIA_SVI("TAXA_CONVENIENCIA_SVI"),
|
||||||
TARIFA_SAFER("TARIFA_SAFER"),
|
TARIFA_SAFER("TARIFA_SAFER"),
|
||||||
JUROS_CARTAO_CREDITO("JUROS_CARTAO_CREDITO"),
|
JUROS_CARTAO_CREDITO("JUROS_CARTAO_CREDITO"),
|
||||||
EMBARQUE_JA("EMBARQUE_JA"),
|
EMBARQUE_JA("EMBARQUE_JA"),
|
||||||
;
|
;
|
||||||
|
|
||||||
private String descricao;
|
private String descricao;
|
||||||
|
|
||||||
private TipoEventoExtra(String descricao) {
|
private TipoEventoExtra(String descricao) {
|
||||||
this.descricao = descricao;
|
this.descricao = descricao;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getDescricao() {
|
public String getDescricao() {
|
||||||
return descricao;
|
return descricao;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return getDescricao();
|
return getDescricao();
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,8 +1,8 @@
|
||||||
package com.rjconsultores.ventaboletos.constantes;
|
package com.rjconsultores.ventaboletos.constantes;
|
||||||
|
|
||||||
public enum TipoSeguro {
|
public enum TipoSeguro {
|
||||||
|
|
||||||
SEGURO,
|
SEGURO,
|
||||||
TPP;
|
TPP;
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,12 +1,12 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AbastoBoleto;
|
import com.rjconsultores.ventaboletos.entidad.AbastoBoleto;
|
||||||
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
||||||
|
|
||||||
public interface AbastoBoletoDAO extends GenericDAO<AbastoBoleto, Integer> {
|
public interface AbastoBoletoDAO extends GenericDAO<AbastoBoleto, Integer> {
|
||||||
|
|
||||||
public List<AbastoBoleto> buscaAbastoBoletoPorPuntoVenta(PuntoVenta puntoVenta);
|
public List<AbastoBoleto> buscaAbastoBoletoPorPuntoVenta(PuntoVenta puntoVenta);
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,34 +1,34 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AbastoCentral;
|
import com.rjconsultores.ventaboletos.entidad.AbastoCentral;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Aidf;
|
import com.rjconsultores.ventaboletos.entidad.Aidf;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Estacion;
|
import com.rjconsultores.ventaboletos.entidad.Estacion;
|
||||||
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
||||||
|
|
||||||
public interface AbastoCentralDAO extends GenericDAO<AbastoCentral, Long> {
|
public interface AbastoCentralDAO extends GenericDAO<AbastoCentral, Long> {
|
||||||
|
|
||||||
|
|
||||||
public List<AbastoCentral> obtenerBilhetes(Aidf aidf, PuntoVenta origem);
|
public List<AbastoCentral> obtenerBilhetes(Aidf aidf, PuntoVenta origem);
|
||||||
public List<AbastoCentral> obtenerBilhetes(Aidf aidf, String formInicial, String formFinal, 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);
|
||||||
public List<AbastoCentral> obtenerBilhetesPorPuntoVenta(PuntoVenta puntoVentaBilhetes, Estacion origem);
|
public List<AbastoCentral> obtenerBilhetesPorPuntoVenta(PuntoVenta puntoVentaBilhetes, Estacion origem);
|
||||||
public List<AbastoCentral> obtenerBilhetesPorPuntoVenta(String formInicial, String formFinal, PuntoVenta puntoVentaBilhetes);
|
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 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, PuntoVenta destino);
|
||||||
public void actualizaBilhetes(List<AbastoCentral> bilhetes, Estacion destino);
|
public void actualizaBilhetes(List<AbastoCentral> bilhetes, Estacion destino);
|
||||||
public void suscribirBilhetes(List<AbastoCentral> bilhetes);
|
public void suscribirBilhetes(List<AbastoCentral> bilhetes);
|
||||||
public List<AbastoCentral> buscaBilhetesPorAidf(Aidf aidf);
|
public List<AbastoCentral> buscaBilhetesPorAidf(Aidf aidf);
|
||||||
|
|
||||||
public void gravaControleEstoqueMigracao(PuntoVenta puntoVenta, Date fecmodif, Integer usuarioId);
|
public void gravaControleEstoqueMigracao(PuntoVenta puntoVenta, Date fecmodif, Integer usuarioId);
|
||||||
|
|
||||||
public List<String> buscarSeriesBilhetesPorEstacion(Estacion estacion);
|
public List<String> buscarSeriesBilhetesPorEstacion(Estacion estacion);
|
||||||
|
|
||||||
public void borrarLosQueTienenAIDF(Aidf aidf);
|
public void borrarLosQueTienenAIDF(Aidf aidf);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,16 +1,16 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AbastoCentral;
|
import com.rjconsultores.ventaboletos.entidad.AbastoCentral;
|
||||||
import com.rjconsultores.ventaboletos.entidad.AbastoHisto;
|
import com.rjconsultores.ventaboletos.entidad.AbastoHisto;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Aidf;
|
import com.rjconsultores.ventaboletos.entidad.Aidf;
|
||||||
import com.rjconsultores.ventaboletos.entidad.TipoMovimentacion;
|
import com.rjconsultores.ventaboletos.entidad.TipoMovimentacion;
|
||||||
|
|
||||||
public interface AbastoHistoDAO extends GenericDAO<AbastoHisto, Long> {
|
public interface AbastoHistoDAO extends GenericDAO<AbastoHisto, Long> {
|
||||||
|
|
||||||
public void grabaHistoricoBilhetes(List<AbastoCentral> bilhetes, TipoMovimentacion tipoMovimentacion);
|
public void grabaHistoricoBilhetes(List<AbastoCentral> bilhetes, TipoMovimentacion tipoMovimentacion);
|
||||||
|
|
||||||
public void borrarLosQueTienenAIDF(Aidf aidf);
|
public void borrarLosQueTienenAIDF(Aidf aidf);
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,21 +1,21 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AgrupamentoParada;
|
import com.rjconsultores.ventaboletos.entidad.AgrupamentoParada;
|
||||||
|
|
||||||
public interface AgruparParadaDAO {
|
public interface AgruparParadaDAO {
|
||||||
|
|
||||||
public AgrupamentoParada obtenerID(Integer id);
|
public AgrupamentoParada obtenerID(Integer id);
|
||||||
|
|
||||||
public AgrupamentoParada suscribir(AgrupamentoParada entidad);
|
public AgrupamentoParada suscribir(AgrupamentoParada entidad);
|
||||||
|
|
||||||
public AgrupamentoParada actualizacion(AgrupamentoParada entidad);
|
public AgrupamentoParada actualizacion(AgrupamentoParada entidad);
|
||||||
|
|
||||||
public List<AgrupamentoParada> obtenerTodos();
|
public List<AgrupamentoParada> obtenerTodos();
|
||||||
|
|
||||||
public List<AgrupamentoParada> buscar(String descAgrupamentoParada);
|
public List<AgrupamentoParada> buscar(String descAgrupamentoParada);
|
||||||
|
|
||||||
public List<AgrupamentoParada> buscarCVE(String cveAgrupamentoParada);
|
public List<AgrupamentoParada> buscarCVE(String cveAgrupamentoParada);
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,29 +1,29 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.Aidf;
|
import com.rjconsultores.ventaboletos.entidad.Aidf;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Estado;
|
import com.rjconsultores.ventaboletos.entidad.Estado;
|
||||||
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
||||||
import com.rjconsultores.ventaboletos.vo.aidf.AidfVo;
|
import com.rjconsultores.ventaboletos.vo.aidf.AidfVo;
|
||||||
|
|
||||||
public interface AidfDAO extends GenericDAO<Aidf, Long> {
|
public interface AidfDAO extends GenericDAO<Aidf, Long> {
|
||||||
|
|
||||||
public List<Aidf> buscaAidfsPorEmpresas(List<Empresa> empresas);
|
public List<Aidf> buscaAidfsPorEmpresas(List<Empresa> empresas);
|
||||||
|
|
||||||
public Boolean existeAidfComCodFiscalEEstado(Long idAidf, Integer especieId, String docFiscal, Estado estado);
|
public Boolean existeAidfComCodFiscalEEstado(Long idAidf, Integer especieId, String docFiscal, Estado estado);
|
||||||
|
|
||||||
public List<Aidf> buscaAidfEstadoEmpresa(Integer empresaId, Integer estadoId,Boolean isRMD);
|
public List<Aidf> buscaAidfEstadoEmpresa(Integer empresaId, Integer estadoId,Boolean isRMD);
|
||||||
|
|
||||||
public String buscaUltimoAidfRMDUtilizado(Long idAidf, Integer empresaId, Integer estadoId);
|
public String buscaUltimoAidfRMDUtilizado(Long idAidf, Integer empresaId, Integer estadoId);
|
||||||
|
|
||||||
public boolean vaidaRMDUtilizado(Long idAidf, Integer empresaId, Integer estadoId, String folio);
|
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);
|
public Boolean validarDocFiscalPorEstadoAgencia(Long idAidf, Integer especieId, String docFiscal, String formInicial, String formFinal, Estado estado, PuntoVenta agencia);
|
||||||
|
|
||||||
public List<Aidf> buscaAidfsPorEmpresaAgencia(Empresa empresa, PuntoVenta pontoVenda);
|
public List<Aidf> buscaAidfsPorEmpresaAgencia(Empresa empresa, PuntoVenta pontoVenda);
|
||||||
|
|
||||||
public List<AidfVo> obtenerAidfFromSerieDocfiscal(String serie, String subSerie, String docfiscal, Connection conn,Integer empresaId);
|
public List<AidfVo> obtenerAidfFromSerieDocfiscal(String serie, String subSerie, String docfiscal, Connection conn,Integer empresaId);
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AidfEspecie;
|
import com.rjconsultores.ventaboletos.entidad.AidfEspecie;
|
||||||
|
|
||||||
public interface AidfEspecieDAO extends GenericDAO<AidfEspecie, Integer> {
|
public interface AidfEspecieDAO extends GenericDAO<AidfEspecie, Integer> {
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AidfTipo;
|
import com.rjconsultores.ventaboletos.entidad.AidfTipo;
|
||||||
|
|
||||||
public interface AidfTipoDAO extends GenericDAO<AidfTipo, Integer> {
|
public interface AidfTipoDAO extends GenericDAO<AidfTipo, Integer> {
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra;
|
import com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra;
|
||||||
|
|
||||||
public interface AjusteEventoExtraDAO extends GenericDAO<AjusteEventoExtra,Integer>{
|
public interface AjusteEventoExtraDAO extends GenericDAO<AjusteEventoExtra,Integer>{
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,60 +1,60 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AliasServico;
|
import com.rjconsultores.ventaboletos.entidad.AliasServico;
|
||||||
import com.rjconsultores.ventaboletos.entidad.ClaseServicio;
|
import com.rjconsultores.ventaboletos.entidad.ClaseServicio;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
||||||
import com.rjconsultores.ventaboletos.entidad.OrgaoConcedente;
|
import com.rjconsultores.ventaboletos.entidad.OrgaoConcedente;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Parada;
|
import com.rjconsultores.ventaboletos.entidad.Parada;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Ruta;
|
import com.rjconsultores.ventaboletos.entidad.Ruta;
|
||||||
|
|
||||||
public interface AliasServicoDAO extends GenericDAO<AliasServico, Integer>{
|
public interface AliasServicoDAO extends GenericDAO<AliasServico, Integer>{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Realiza a buscar com os filtros informados e restringindo o corridaId para is null
|
* Realiza a buscar com os filtros informados e restringindo o corridaId para is null
|
||||||
*
|
*
|
||||||
* @param origenId
|
* @param origenId
|
||||||
* @param destinoId
|
* @param destinoId
|
||||||
* @param rutaId
|
* @param rutaId
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<AliasServico> buscarAliasSemCorrida(Integer origenId,Integer destinoId,Integer rutaId);
|
public List<AliasServico> buscarAliasSemCorrida(Integer origenId,Integer destinoId,Integer rutaId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Realiza a busca com os filtro informados.
|
* Realiza a busca com os filtro informados.
|
||||||
* @param origenId
|
* @param origenId
|
||||||
* @param destinoId
|
* @param destinoId
|
||||||
* @param rutaId
|
* @param rutaId
|
||||||
* @param corridaId
|
* @param corridaId
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<AliasServico> buscar(Integer origenId,Integer destinoId,Integer rutaId,Integer corridaId);
|
public List<AliasServico> buscar(Integer origenId,Integer destinoId,Integer rutaId,Integer corridaId);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Realiza a busca com os filtro informados.
|
* Realiza a busca com os filtro informados.
|
||||||
* @param linas
|
* @param linas
|
||||||
* @param empresas
|
* @param empresas
|
||||||
* @param tiposClasses
|
* @param tiposClasses
|
||||||
* @param orgaos
|
* @param orgaos
|
||||||
* @param prefixo
|
* @param prefixo
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<AliasServico> buscarPorLinhaEmpresa(List<Ruta> linhas, List<Empresa> empresas, List<ClaseServicio> tiposClasses, List<OrgaoConcedente> orgaos, String prefixo);
|
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.
|
* Realiza a busca com os filtro informados.
|
||||||
* @param origem
|
* @param origem
|
||||||
* @param destino
|
* @param destino
|
||||||
* @param linha
|
* @param linha
|
||||||
* @param idCorrida
|
* @param idCorrida
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public AliasServico existe(Parada origem, Parada destino, Ruta linha, Integer idCorrida);
|
public AliasServico existe(Parada origem, Parada destino, Ruta linha, Integer idCorrida);
|
||||||
|
|
||||||
List<AliasServico> buscarPorRuta(Integer rutaId);
|
List<AliasServico> buscarPorRuta(Integer rutaId);
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,12 +1,12 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AliquotaEstadoDestino;
|
import com.rjconsultores.ventaboletos.entidad.AliquotaEstadoDestino;
|
||||||
import com.rjconsultores.ventaboletos.entidad.EmpresaImposto;
|
import com.rjconsultores.ventaboletos.entidad.EmpresaImposto;
|
||||||
|
|
||||||
public interface AliquotaEstadoDestinoDAO extends GenericDAO<AliquotaEstadoDestino, Integer> {
|
public interface AliquotaEstadoDestinoDAO extends GenericDAO<AliquotaEstadoDestino, Integer> {
|
||||||
|
|
||||||
public List<AliquotaEstadoDestino> getChildrens(EmpresaImposto parent);
|
public List<AliquotaEstadoDestino> getChildrens(EmpresaImposto parent);
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,12 +1,12 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AuditLog;
|
import com.rjconsultores.ventaboletos.entidad.AuditLog;
|
||||||
import com.rjconsultores.ventaboletos.entidad.AuditModule;
|
import com.rjconsultores.ventaboletos.entidad.AuditModule;
|
||||||
|
|
||||||
public interface AuditLogDAO extends GenericDAO<AuditLog, Long> {
|
public interface AuditLogDAO extends GenericDAO<AuditLog, Long> {
|
||||||
public List<AuditLog> carregarLog(AuditModule modulo);
|
public List<AuditLog> carregarLog(AuditModule modulo);
|
||||||
|
|
||||||
public List<AuditLog> filtrarLog(AuditLog log);
|
public List<AuditLog> filtrarLog(AuditLog log);
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AuditModule;
|
import com.rjconsultores.ventaboletos.entidad.AuditModule;
|
||||||
|
|
||||||
public interface AuditModuleDAO extends GenericDAO<AuditModule, Long>{
|
public interface AuditModuleDAO extends GenericDAO<AuditModule, Long>{
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
package com.rjconsultores.ventaboletos.dao;
|
package com.rjconsultores.ventaboletos.dao;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.AuditService;
|
import com.rjconsultores.ventaboletos.entidad.AuditService;
|
||||||
|
|
||||||
public interface AuditServiceDAO extends GenericDAO<AuditService, Long> {
|
public interface AuditServiceDAO extends GenericDAO<AuditService, Long> {
|
||||||
public AuditService carregarService(AuditService auditService);
|
public AuditService carregarService(AuditService auditService);
|
||||||
}
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue