Is it possible to get the value of a parameter if an annotation is present on that parameter?
Given EJB with parameter-level annotations:
public void fooBar(@Foo String a, String b, @Foo String c) {...}
And an interceptor:
@AroundInvoke
public Object doIntercept(InvocationContext context) throws Exception {
// Get value of parameters that have annotation @Foo
}