Bug 348617 - multiple value binding in optimized annotation matching
Summary: multiple value binding in optimized annotation matching
Status: NEW
Alias: None
Product: AspectJ
Classification: Tools
Component: Compiler (show other bugs)
Version: 1.6.11   Edit
Hardware: PC Mac OS X - Carbon (unsup.)
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: aspectj inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-06-07 14:01 EDT by Andrew Clement CLA
Modified: 2011-06-07 14:01 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Clement CLA 2011-06-07 14:01:39 EDT
bug raised to cover the second requirement in bug 347684.

Currently you have to do this:

@Pointcut("execution(@org.exist.security.PermissionRequired *
*(..)) && this(permission) &&
@annotation(org.exist.security.PermissionRequired(mode)) &&
@annotation(org.exist.security.PermissionRequired(user)) &&
@annotation(org.exist.security.PermissionRequired(group))")

rather than this:
 @Pointcut("execution(@org.exist.security.PermissionRequired * *(..)) &&
this(permission) &&
@annotation(org.exist.security.PermissionRequired(mode,user,group))")