- 
                Notifications
    You must be signed in to change notification settings 
- Fork 38.8k
Closed as not planned
Labels
status: duplicateA duplicate of another issueA duplicate of another issue
Description
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
Metadata
Metadata
Assignees
Labels
status: duplicateA duplicate of another issueA duplicate of another issue