Commit ce6829f7b5ea2386c28a76783793ea9edf22a976

Authored by Cleverson Sacramento
1 parent cb31e0dc
Exists in master

Remoção da pasta bin

Showing 389 changed files with 0 additions and 3437 deletions   Show diff stats

Too many changes.

To preserve performance only 100 of 389 files displayed.

impl/core/bin/.gitignore
@@ -1,6 +0,0 @@ @@ -1,6 +0,0 @@
1 -/target  
2 -/.project  
3 -/.classpath  
4 -/.settings  
5 -/.externalToolBuilders  
6 -/.DS_Store  
impl/core/bin/pom.xml
@@ -1,285 +0,0 @@ @@ -1,285 +0,0 @@
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
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/Ignore.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/ManagedOperation.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/ManagedProperty$ManagedPropertyAccess.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/ManagedProperty.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/Name.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/OperationParameter.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/OperationType.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/Priority.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/StaticScoped.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/annotation/ViewScoped.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/configuration/ConfigType.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/configuration/Configuration.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/configuration/ConfigurationException.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/configuration/ConfigurationValueExtractor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/exception/ApplicationException.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/exception/ExceptionHandler.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/exception/ExceptionHandlerInterceptor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/AbstractLifecycleBootstrap.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/AbstractStrategyBootstrap.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/ConfigurationBootstrap.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/CoreBootstrap.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/ManagementBootstrap.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/ShutdownBootstrap.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/StartupBootstrap.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/configuration/PaginationConfig.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/configuration/SecurityConfig.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/configuration/TransactionConfig.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/AbstractCustomContext$Store.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/AbstractCustomContext.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/ContextManager.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/CustomContext.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/CustomContextCounter.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/ManagedContext.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/StaticContext.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/context/ThreadLocalContext.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/AnnotatedMethodProcessor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationArrayValueExtractor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationClassValueExtractor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationImpl.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationLoader.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationMapValueExtractor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationPrimitiveOrWrapperValueExtractor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ConfigurationStringValueExtractor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/DefaultAuthenticator.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/DefaultAuthorizer.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/DefaultTransaction.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/LoggerMessageAppender.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/MessageContextImpl.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/NotificationManagerImpl.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/PaginationContextImpl.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/PaginationImpl.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/SecurityContextImpl$EmptyUser.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/SecurityContextImpl.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/StrategySelector.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/TransactionContextImpl.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/interceptor/ExceptionHandlerInterceptor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/interceptor/RequiredPermissionInterceptor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/interceptor/RequiredRoleInterceptor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/interceptor/TransactionalInterceptor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagedType$FieldDetail.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagedType$MethodDetail.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagedType$ParameterDetail.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagedType.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/Management.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/ManagementNotificationEventImpl.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/qualifier/AttributeChange.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/management/qualifier/Generic.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/producer/LoggerProducer.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/producer/ResourceBundleProducer.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/internal/proxy/Slf4jLoggerProxy.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/AfterShutdownProccess.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/AfterStartupProccess.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/ManagementExtension.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Shutdown.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Startup.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/AttributeChangeNotification.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/GenericNotification.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/ManagedAttributeNotFoundException.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/ManagedInvokationException.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/ManagementNotificationEvent.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/management/NotificationManager.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/DefaultMessage.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/Message.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/MessageAppender.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/MessageContext.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/message/SeverityType.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/pagination/Pagination.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/pagination/PaginationContext.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/AfterLoginSuccessful.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/AfterLogoutSuccessful.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/AuthenticationException.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/Authenticator.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/AuthorizationException.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/Authorizer.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/LoggedIn.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/LoggedInInterceptor.class
No preview for this file type
impl/core/bin/src/main/java/br/gov/frameworkdemoiselle/security/NotLoggedInException.class
No preview for this file type