Hello every body,

my methods are decorated with an annotation with parameter
Code:
@Validation(name="special")
My Pointcut/Before are:
Code:
 @Before("@annotation(de.xxx.xxx.Validation ()")
I want to define an Pointcut with the Annotation and with special Parameter. I dont want to use the args-Argument and use the argument in the method.

Can you help me oder give me an Advice?