[jboss-user] [JBoss AOP] - Re: help with poincut for annotation parameter values

2008-12-19 Thread vladimir.kovalyuk
DerMas, thanks for help. I'm afraid what I'm looking for is actually not supported. Dynamic interception won't help 'cause I have to reflect aspectized classes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4197589#4197589 Reply to the post : http://www.jbo

[jboss-user] [JBoss AOP] - Re: help with poincut for annotation parameter values

2008-12-19 Thread DerMas
As far as I know you can only set pointcuts for an annotation, but not for its attributes. So you have to intercept all @Mixins annotations and then you can check out which attributes are set in your aspect/interceptor: | MethodInvocation methodInvocation = (MethodInvocation) invocation; |