Hi,
I would like to create a pointcut, which mathces those methods of any
class, that has at least one argument, that is annoted with the Secured
annotation. Let us assume that we do not know the number of argument or the
number of maximal arguments...
example:
class NotKnown{
void foo1(int x, @Secured String a){ ... }
void foo2(@Secured String a, boolean b){ ... }
};
The incorrect pontcut:
* *.*(..., @Secured *, ...)
Many thanks
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users