Commit e1ffe72033f6f716be0d6e00794fc679d1219890

Authored by Cleverson Sacramento
1 parent 58d2f13f
Exists in master

Inclusão de *.log no .gitignore e correção do teste de transação JDBC

Showing 414 changed files with 3476 additions and 52 deletions   Show diff stats

Too many changes.

To preserve performance only 100 of 414 files displayed.

impl/.gitignore
  1 +/*.log
1 2 /target
2 3 /.project
3 4 /.classpath
... ...
impl/core/.gitignore
  1 +/*.log
1 2 /target
2 3 /.project
3 4 /.classpath
4 5 /.settings
5 6 /.externalToolBuilders
6 7 /.DS_Store
7   -/bin
... ...
impl/core/bin/.gitignore 0 → 100644
... ... @@ -0,0 +1,6 @@
  1 +/target
  2 +/.project
  3 +/.classpath
  4 +/.settings
  5 +/.externalToolBuilders
  6 +/.DS_Store
... ...
impl/core/bin/pom.xml 0 → 100755
... ... @@ -0,0 +1,285 @@
  1 +<!--
  2 + Demoiselle Framework
  3 + Copyright (C) 2010 SERPRO
  4 + ============================================================================
  5 + This file is part of Demoiselle Framework.
  6 +
  7 + Demoiselle Framework is free software; you can redistribute it and/or
  8 + modify it under the terms of the GNU Lesser General Public License version 3
  9 + as published by the Free Software Foundation.
  10 +
  11 + This program is distributed in the hope that it will be useful,
  12 + but WITHOUT ANY WARRANTY; without even the implied warranty of
  13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14 + GNU General Public License for more details.
  15 +
  16 + You should have received a copy of the GNU Lesser General Public License version 3
  17 + along with this program; if not, see <http://www.gnu.org/licenses />
  18 + or write to the Free Software Foundation, Inc., 51 Franklin Street,
  19 + Fifth Floor, Boston, MA 02110-1301, USA.
  20 + ============================================================================
  21 + Este arquivo é parte do Framework Demoiselle.
  22 +
  23 + O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou
  24 + modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação
  25 + do Software Livre (FSF).
  26 +
  27 + Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA
  28 + GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou
  29 + APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português
  30 + para maiores detalhes.
  31 +
  32 + Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título
  33 + "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses />
  34 + ou escreva para a Fundação do Software Livre (FSF) Inc.,
  35 + 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA.
  36 +-->
  37 +<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/maven-v4_0_0.xsd">
  38 +
  39 + <modelVersion>4.0.0</modelVersion>
  40 +
  41 + <artifactId>demoiselle-core</artifactId>
  42 + <packaging>jar</packaging>
  43 +
  44 + <parent>
  45 + <groupId>br.gov.frameworkdemoiselle</groupId>
  46 + <artifactId>demoiselle-framework-parent</artifactId>
  47 + <version>2.4.0-BETA4-SNAPSHOT</version>
  48 + <relativePath>../../parent/framework</relativePath>
  49 + </parent>
  50 +
  51 + <name>Demoiselle Framework Core</name>
  52 + <description>
  53 + Contém funcionalidades comuns a todos os projetos e extensões do framework de forma independente de
  54 + camadas de apresentação e persistência.
  55 + </description>
  56 + <url>http://www.frameworkdemoiselle.gov.br</url>
  57 +
  58 + <licenses>
  59 + <license>
  60 + <name>GNU Lesser General Public License, Version 3</name>
  61 + <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
  62 + </license>
  63 + </licenses>
  64 +
  65 + <organization>
  66 + <name>SERPRO - Serviço Federal de Processamento de Dados</name>
  67 + <url>http://www.serpro.gov.br</url>
  68 + </organization>
  69 +
  70 + <dependencyManagement>
  71 + <dependencies>
  72 + <dependency>
  73 + <groupId>br.gov.frameworkdemoiselle</groupId>
  74 + <artifactId>demoiselle-framework-bom</artifactId>
  75 + <version>2.4.0-BETA4-SNAPSHOT</version>
  76 + <scope>import</scope>
  77 + <type>pom</type>
  78 + </dependency>
  79 + <dependency>
  80 + <groupId>org.jboss.arquillian</groupId>
  81 + <artifactId>arquillian-bom</artifactId>
  82 + <version>${arquillian.bom.version}</version>
  83 + <scope>import</scope>
  84 + <type>pom</type>
  85 + </dependency>
  86 + </dependencies>
  87 + </dependencyManagement>
  88 +
  89 + <build>
  90 + <plugins>
  91 + <plugin>
  92 + <groupId>org.apache.maven.plugins</groupId>
  93 + <artifactId>maven-compiler-plugin</artifactId>
  94 + </plugin>
  95 + <plugin>
  96 + <groupId>org.apache.maven.plugins</groupId>
  97 + <artifactId>maven-javadoc-plugin</artifactId>
  98 + </plugin>
  99 + <plugin>
  100 + <groupId>org.apache.maven.plugins</groupId>
  101 + <artifactId>maven-source-plugin</artifactId>
  102 + </plugin>
  103 + <plugin>
  104 + <groupId>org.codehaus.mojo</groupId>
  105 + <artifactId>cobertura-maven-plugin</artifactId>
  106 + </plugin>
  107 +
  108 + <!--
  109 + <plugin>
  110 + <groupId>org.jacoco</groupId>
  111 + <artifactId>jacoco-maven-plugin</artifactId>
  112 + <version>${jacoco.version}</version>
  113 + <executions>
  114 + <execution>
  115 + <goals>
  116 + <goal>prepare-agent</goal>
  117 + </goals>
  118 + </execution>
  119 + <execution>
  120 + <id>report</id>
  121 + <phase>prepare-package</phase>
  122 + <goals>
  123 + <goal>report</goal>
  124 + </goals>
  125 + </execution>
  126 + </executions>
  127 + </plugin>
  128 + -->
  129 + </plugins>
  130 +
  131 + <!--
  132 + <pluginManagement>
  133 + <plugins>
  134 + <plugin>
  135 + <groupId>org.eclipse.m2e</groupId>
  136 + <artifactId>lifecycle-mapping</artifactId>
  137 + <version>1.0.0</version>
  138 + <configuration>
  139 + <lifecycleMappingMetadata>
  140 + <pluginExecutions>
  141 + <pluginExecution>
  142 + <pluginExecutionFilter>
  143 + <groupId>org.jacoco</groupId>
  144 + <artifactId>jacoco-maven-plugin</artifactId>
  145 + <versionRange>[${jacoco.version},)</versionRange>
  146 + <goals>
  147 + <goal>prepare-agent</goal>
  148 + </goals>
  149 + </pluginExecutionFilter>
  150 + <action>
  151 + <ignore></ignore>
  152 + </action>
  153 + </pluginExecution>
  154 + </pluginExecutions>
  155 + </lifecycleMappingMetadata>
  156 + </configuration>
  157 + </plugin>
  158 + </plugins>
  159 + </pluginManagement>
  160 + -->
  161 + </build>
  162 +
  163 + <dependencies>
  164 + <dependency>
  165 + <groupId>javax.enterprise</groupId>
  166 + <artifactId>cdi-api</artifactId>
  167 + </dependency>
  168 + <dependency>
  169 + <artifactId>validation-api</artifactId>
  170 + <groupId>javax.validation</groupId>
  171 + </dependency>
  172 + <dependency>
  173 + <groupId>org.slf4j</groupId>
  174 + <artifactId>slf4j-api</artifactId>
  175 + </dependency>
  176 + <dependency>
  177 + <groupId>org.javassist</groupId>
  178 + <artifactId>javassist</artifactId>
  179 + </dependency>
  180 + <dependency>
  181 + <groupId>commons-configuration</groupId>
  182 + <artifactId>commons-configuration</artifactId>
  183 + </dependency>
  184 +
  185 + <!-- for tests -->
  186 + <dependency>
  187 + <groupId>junit</groupId>
  188 + <artifactId>junit</artifactId>
  189 + <scope>test</scope>
  190 + </dependency>
  191 + <dependency>
  192 + <groupId>org.jboss.arquillian.junit</groupId>
  193 + <artifactId>arquillian-junit-container</artifactId>
  194 + <scope>test</scope>
  195 + </dependency>
  196 + <dependency>
  197 + <groupId>org.jboss.arquillian.container</groupId>
  198 + <artifactId>arquillian-weld-se-embedded-1.1</artifactId>
  199 + <version>${arquillian.weld.version}</version>
  200 + <scope>test</scope>
  201 + </dependency>
  202 + <dependency>
  203 + <groupId>org.jboss.weld.se</groupId>
  204 + <artifactId>weld-se-core</artifactId>
  205 + <scope>test</scope>
  206 + </dependency>
  207 + <dependency>
  208 + <groupId>org.hibernate</groupId>
  209 + <artifactId>hibernate-validator</artifactId>
  210 + <scope>test</scope>
  211 + </dependency>
  212 + <dependency>
  213 + <groupId>org.slf4j</groupId>
  214 + <artifactId>slf4j-log4j12</artifactId>
  215 + <scope>test</scope>
  216 + </dependency>
  217 +
  218 + <!--
  219 + <dependency>
  220 + <groupId>javax.servlet</groupId>
  221 + <artifactId>servlet-api</artifactId>
  222 + <scope>test</scope>
  223 + </dependency>
  224 +
  225 + <dependency>
  226 + <groupId>org.jboss.arquillian.extension</groupId>
  227 + <artifactId>arquillian-jacoco</artifactId>
  228 + <version>1.0.0.Alpha5</version>
  229 + <scope>test</scope>
  230 + </dependency>
  231 + <dependency>
  232 + <groupId>org.jacoco</groupId>
  233 + <artifactId>org.jacoco.core</artifactId>
  234 + <version>${jacoco.version}</version>
  235 + <scope>test</scope>
  236 + </dependency>
  237 +
  238 + <dependency>
  239 + <groupId>org.jboss.shrinkwrap.descriptors</groupId>
  240 + <artifactId>shrinkwrap-descriptors-spi</artifactId>
  241 + <version>2.0.0-alpha-4</version>
  242 + <scope>test</scope>
  243 + </dependency>
  244 +
  245 + <dependency>
  246 + <groupId>javax.el</groupId>
  247 + <artifactId>el-api</artifactId>
  248 + <scope>test</scope>
  249 + </dependency>
  250 + -->
  251 + </dependencies>
  252 +
  253 + <repositories>
  254 + <repository>
  255 + <id>sonatype-nexus-snapshots</id>
  256 + <name>Sonatype Nexus Snapshots</name>
  257 + <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  258 + <snapshots>
  259 + <enabled>true</enabled>
  260 + </snapshots>
  261 + <releases>
  262 + <enabled>false</enabled>
  263 + </releases>
  264 + </repository>
  265 + <repository>
  266 + <id>sonatype-nexus-releases</id>
  267 + <name>Sonatype Nexus Releases</name>
  268 + <url>https://oss.sonatype.org/content/repositories/releases</url>
  269 + <snapshots>
  270 + <enabled>false</enabled>
  271 + </snapshots>
  272 + <releases>
  273 + <enabled>true</enabled>
  274 + </releases>
  275 + </repository>
  276 + </repositories>
  277 +
  278 + <properties>
  279 + <arquillian.bom.version>1.1.1.Final</arquillian.bom.version>
  280 + <arquillian.weld.version>1.0.0.CR7</arquillian.weld.version>
  281 +
  282 + <!-- <jacoco.version>0.6.0.201210061924</jacoco.version> -->
  283 + <demoiselle.validation.version>2.4.0-BETA2-SNAPSHOT</demoiselle.validation.version>
  284 + </properties>
  285 +</project>
... ...
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/DemoiselleException.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/Ignore.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/ManagedOperation.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/ManagedProperty$ManagedPropertyAccess.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/ManagedProperty.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/Name.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/OperationParameter.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/OperationType.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/Priority.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/StaticScoped.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/ViewScoped.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/configuration/ConfigType.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/configuration/Configuration.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/configuration/ConfigurationException.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/configuration/ConfigurationValueExtractor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/exception/ApplicationException.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/exception/ExceptionHandler.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/exception/ExceptionHandlerInterceptor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/AbstractLifecycleBootstrap.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/AbstractStrategyBootstrap.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/ConfigurationBootstrap.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/CoreBootstrap.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/ManagementBootstrap.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/ShutdownBootstrap.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/StartupBootstrap.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/configuration/PaginationConfig.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/configuration/SecurityConfig.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/configuration/TransactionConfig.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/AbstractCustomContext$Store.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/AbstractCustomContext.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/ContextManager.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/CustomContext.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/CustomContextCounter.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/ManagedContext.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/StaticContext.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/ThreadLocalContext.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/AnnotatedMethodProcessor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationArrayValueExtractor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationClassValueExtractor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationImpl.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationLoader.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationMapValueExtractor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationPrimitiveOrWrapperValueExtractor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationStringValueExtractor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/DefaultAuthenticator.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/DefaultAuthorizer.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/DefaultTransaction.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/LoggerMessageAppender.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/MessageContextImpl.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/NotificationManagerImpl.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/PaginationContextImpl.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/PaginationImpl.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/SecurityContextImpl$EmptyUser.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/SecurityContextImpl.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/StrategySelector.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/TransactionContextImpl.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/interceptor/ExceptionHandlerInterceptor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/interceptor/RequiredPermissionInterceptor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/interceptor/RequiredRoleInterceptor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/interceptor/TransactionalInterceptor.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagedType$FieldDetail.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagedType$MethodDetail.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagedType$ParameterDetail.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagedType.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/Management.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagementNotificationEventImpl.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/qualifier/AttributeChange.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/qualifier/Generic.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/producer/LoggerProducer.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/producer/ResourceBundleProducer.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/proxy/Slf4jLoggerProxy.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/AfterShutdownProccess.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/AfterStartupProccess.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/ManagementExtension.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Shutdown.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Startup.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/AttributeChangeNotification.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/GenericNotification.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/ManagedAttributeNotFoundException.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/ManagedInvokationException.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/ManagementNotificationEvent.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/NotificationManager.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/DefaultMessage.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/Message.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/MessageAppender.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/MessageContext.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/SeverityType.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/pagination/Pagination.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/pagination/PaginationContext.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/AfterLoginSuccessful.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/AfterLogoutSuccessful.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/AuthenticationException.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/Authenticator.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/AuthorizationException.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/Authorizer.class 0 → 100644
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/LoggedIn.class 0 → 100644
No preview for this file type