[forge-issues] [JBoss JIRA] (FORGE-2061) Being able to create a new CDI interceptor

Antonio Goncalves (JIRA) issues at jboss.org
Sun Oct 5 11:39:10 EDT 2014


     [ https://issues.jboss.org/browse/FORGE-2061?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Goncalves deleted FORGE-2061:
-------------------------------------


> Being able to create a new CDI interceptor
> ------------------------------------------
>
>                 Key: FORGE-2061
>                 URL: https://issues.jboss.org/browse/FORGE-2061
>             Project: Forge
>          Issue Type: Sub-task
>            Reporter: Antonio Goncalves
>
> It would be good to have a command to generate a CDI interceptor. A simple command such as : 
> {code}
> cdi-new-interceptor --named LoggingInterceptor ;
> {code}
> Would generate :
> {code}
> @Interceptor
> public class LoggingInterceptor {
>     @AroundInvoke
>     public Object logMethod(InvocationContext ic) throws Exception {
>         try {
>             return ic.proceed();
>         } finally {
>         }
>     }
> }
> {code}
> There could even have another parameter to add an existing interceptor binding
> {code}
> cdi-new-interceptor --named LoggingInterceptor --binding Loggable ;
> {code}
> Would add the Loggable interceptor binding to the class :
> {code}
> @Interceptor
> @Loggable
> public class LoggingInterceptor {
>     @AroundInvoke
>     public Object logMethod(InvocationContext ic) throws Exception {
>         try {
>             return ic.proceed();
>         } finally {
>         }
>     }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.1#6329)


More information about the forge-issues mailing list