Commit 6a1cf7a2d8cdea1c48f75649b51e3e786606d31b

Authored by Mariana Gomes
0 parents
Exists in master

Submissão Inicial

Showing 544 changed files with 25355 additions and 0 deletions   Show diff stats

Too many changes.

To preserve performance only 100 of 544 files displayed.

META-INF/MANIFEST.MF 0 → 100644
  1 +++ a/META-INF/MANIFEST.MF
... ... @@ -0,0 +1,3 @@
  1 +Manifest-Version: 1.0
  2 +Class-Path:
  3 +
... ...
META-INF/context.xml 0 → 100644
  1 +++ a/META-INF/context.xml
... ... @@ -0,0 +1,12 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Context path="/sigafrota">
  3 + <Resource
  4 + name="jdbc/sigafrota"
  5 + auth="Container"
  6 + type="javax.sql.DataSource"
  7 + username="sigafrota"
  8 + password="@2011"
  9 + driverClassName="org.postgresql.Driver"
  10 + url="jdbc:postgresql://localhost:5432/sigafrota"/>
  11 +
  12 +</Context>
... ...
README.md 0 → 100644
  1 +++ a/README.md
... ...
WEB-INF/.faces-config.xml.jsfdia 0 → 100644
  1 +++ a/WEB-INF/.faces-config.xml.jsfdia
... ... @@ -0,0 +1,2 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<PROCESS model-entity="JSFProcess"/>
... ...
WEB-INF/classes/META-INF/orm.xml 0 → 100644
  1 +++ a/WEB-INF/classes/META-INF/orm.xml
... ... @@ -0,0 +1,3 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_1_0.xsd" version="1.0">
  3 +</entity-mappings>
... ...
WEB-INF/classes/META-INF/persistence.xml 0 → 100644
  1 +++ a/WEB-INF/classes/META-INF/persistence.xml
... ... @@ -0,0 +1,56 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<persistence version="1.0"
  3 + xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4 + xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
  5 + <persistence-unit name="sigafrota" transaction-type="RESOURCE_LOCAL">
  6 + <provider>org.hibernate.ejb.HibernatePersistence</provider>
  7 + <class>br.org.sigafrota.entity.User</class>
  8 + <class>br.org.sigafrota.entity.Pessoa</class>
  9 + <class>br.org.sigafrota.entity.Posto</class>
  10 + <class>br.org.sigafrota.entity.PostoServico</class>
  11 + <class>br.org.sigafrota.entity.PostoServicoVeiculo</class>
  12 + <class>br.org.sigafrota.entity.Role</class>
  13 + <class>br.org.sigafrota.entity.Motorista</class>
  14 + <class>br.org.sigafrota.entity.Permissao</class>
  15 + <class>br.org.sigafrota.entity.SolicitacaoVeiculo</class>
  16 + <class>br.org.sigafrota.entity.RegistroVeiculo</class>
  17 + <class>br.org.sigafrota.entity.Infracao</class>
  18 + <class>br.org.sigafrota.entity.Modelo</class>
  19 + <class>br.org.sigafrota.entity.Marca</class>
  20 + <class>br.org.sigafrota.entity.Multa</class>
  21 + <class>br.org.sigafrota.entity.Especie</class>
  22 + <class>br.org.sigafrota.entity.Veiculo</class>
  23 + <class>br.org.sigafrota.entity.TipoServico</class>
  24 + <class>br.org.sigafrota.entity.TipoCombustivel</class>
  25 + <class>br.org.sigafrota.entity.Cota</class>
  26 + <class>br.org.sigafrota.entity.DiarioBomba</class>
  27 + <class>br.org.sigafrota.entity.Bomba</class>
  28 + <class>br.org.sigafrota.entity.LogUsuario</class>
  29 + <class>br.org.sigafrota.entity.UA</class>
  30 + <class>br.org.sigafrota.entity.UG</class>
  31 + <class>br.org.sigafrota.entity.NumeroMotor</class>
  32 + <class>br.org.sigafrota.entity.Oficina</class>
  33 + <class>br.org.sigafrota.entity.RequisicaoManutencao</class>
  34 + <class>br.org.sigafrota.entity.ItemRequisicao</class>
  35 + <class>br.org.sigafrota.entity.SolicitacaoLubrificante</class>
  36 + <class>br.org.sigafrota.entity.Abastecimento</class>
  37 + <class>br.org.sigafrota.entity.AtendimentoAbastecimento</class>
  38 + <class>br.org.sigafrota.entity.Parametro</class>
  39 + <class>br.org.sigafrota.entity.Transmissao</class>
  40 + <class>br.org.sigafrota.entity.Ponto</class>
  41 + <class>br.org.sigafrota.entity.Area</class>
  42 + <class>br.org.sigafrota.entity.Message</class>
  43 + <class>br.org.sigafrota.entity.Page</class>
  44 + <class>br.org.sigafrota.entity.Rastreador</class>
  45 + <properties>
  46 + <property name="hibernate.connection.datasource" value="java:/comp/env/jdbc/sigafrota" />
  47 + <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
  48 + <property name="hibernate.cache.provider_class" value="org.hibernate.cache.HashtableCacheProvider"></property>
  49 + <property name="hibernate.cache.use_second_level_cache" value="true" />
  50 + <property name="hibernate.cache.use_query_cache" value="true" />
  51 + <property name="hibernate.format_sql" value="false" />
  52 + <property name="hibernate.show_sql" value="false" />
  53 + <property name="hibernate.current_session_context_class" value="thread" />
  54 + </properties>
  55 + </persistence-unit>
  56 +</persistence>
0 57 \ No newline at end of file
... ...
WEB-INF/classes/br/org/sigafrota/bean/AbastecimentoBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/AbastecimentoBean$2.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/AbastecimentoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/AreaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/AtendimentoAbastecimentoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/AutorizacaoAbastecimentoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/BaseBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/BaseStateBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/BombaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/CombustivelBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/ControlStateBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/CotaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/CrudStateBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/DiarioBombaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/DownloadBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/EntityBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/EspecieBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/EspecieBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/InfracaoBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/InfracaoBean$2.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/InfracaoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/LoginBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MapBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MapBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MapUtilBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MarcaBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MarcaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MessageBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/ModeloBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/ModeloBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MonitoramentoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MotoristaBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MotoristaBean$2.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MotoristaBean$3.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MotoristaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/MultaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/NumeroMotorBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/OficinaBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/OficinaBean$2.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/OficinaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/PageBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/PermissaoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/PessoaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/PontoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/PostoBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/PostoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/PostoServicoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/PostoServicoVeiculoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RastreadorBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RelatorioBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RelatorioBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RelatorioMonitoramentoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RequisicaoManutencaoBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RequisicaoManutencaoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RoleBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RoleBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/SincronizaBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/SincronizaBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/SolicitacaoLubrificanteBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/SolicitacaoLubrificanteBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/SolicitacaoVeiculoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/TipoServicoBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/TipoServicoBean$2.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/TipoServicoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/UABean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/UABean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/UGBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/UsuarioBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/UsuarioBean$2.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/UsuarioBean$3.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/UsuarioBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/VeiculoBean$1.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/VeiculoBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/VeiculosInconsistentesBean.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/log4j.properties 0 → 100644
  1 +++ a/WEB-INF/classes/br/org/sigafrota/bean/log4j.properties
... ... @@ -0,0 +1,9 @@
  1 +log4j.rootLogger=ERROR, FILE
  2 +log4j.appender.FILE=org.apache.log4j.DailyRollingFileAppender
  3 +log4j.appender.FILE.DatePattern='.'yyyy-MM-dd
  4 +log4j.appender.FILE.File=./logs/fortaleza.log
  5 +log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
  6 +log4j.appender.FILE.layout.ConversionPattern=%d [%t] %-5p %c - %m%n
  7 +
  8 +log4j.logger.org.springframework.security=INFO, stdout
  9 +log4j.appender.stdout=org.apache.log4j.ConsoleAppender
... ...
WEB-INF/classes/br/org/sigafrota/conversores/CombustivelConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/EntityConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/EnumConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/GeometryType.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/PGGeometryUserType.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/PermissaoConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/PostoConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/PostoServicoConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/RoleConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/TipoServicoConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/UAConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/UGConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/ValorConverter.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/entity/Abastecimento.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/entity/Area.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/entity/AtendimentoAbastecimento.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/entity/Bomba.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/entity/Cota.class 0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/entity/DiarioBomba.class 0 → 100644
No preview for this file type