Commit d444f2bc770ff062516231426e606a9569c7084d
1 parent
3d5bb6cc
Exists in
master
Inclusão dos interceptors no arquétipo mínimo
Showing
1 changed file
with
7 additions
and
0 deletions
Show diff stats
archetype/minimal/src/main/resources/archetype-resources/src/main/resources/META-INF/beans.xml
1 | 1 | <beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 2 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/beans_1_0.xsd"> |
3 | 3 | |
4 | + <interceptors> | |
5 | + <class>br.gov.frameworkdemoiselle.internal.interceptor.ExceptionHandlerInterceptor</class> | |
6 | + <class>br.gov.frameworkdemoiselle.internal.interceptor.RequiredPermissionInterceptor</class> | |
7 | + <class>br.gov.frameworkdemoiselle.internal.interceptor.RequiredRoleInterceptor</class> | |
8 | + <class>br.gov.frameworkdemoiselle.internal.interceptor.TransactionalInterceptor</class> | |
9 | + </interceptors> | |
10 | + | |
4 | 11 | </beans> | ... | ... |