Annotation Interface BindParameterArray


@Target(PARAMETER) @Retention(RUNTIME) public @interface BindParameterArray
Annotates a parameter to any @Pointcut advice method (@IsEnabled, @OnBefore, @OnReturn, @OnThrow, @OnAfter).

When the advice method is called, all of the parameters passed to the method matched by the Pointcut are wrapped into a single Object[] and bound to this parameter.

Parameters annotated with @BindMethodName must be of type Object[].