You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Any join point (method execution only in Spring AOP) which takes a single parameter, and
where the runtime type of the argument passed has the @classified annotation:"
Page: 333 (334)
"Any join point (method execution only in Spring AOP) which takes a single parameter, and
where the runtime type of the argument passed has the @classified annotation:"
The solution in the documentation is:
@Args(com.xyz.security.Classified)
However, the actual solution should be:
@execution(* *(..)) && args(arg) && @Args(com.xyz.security.Classified).
The example in the documentation does not account for the requirement of a single parameter.
fix- pr
The text was updated successfully, but these errors were encountered: