org.aspectj/tests/bugs164/pr265695/AspNew.aj

33 рядки
694 B
Plaintext

2009-02-20 21:57:15 +01:00
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
@interface Secured {
String value();
}
interface DemoService {
@Secured("READ")
void secureMethod();
}
class DemoServiceImpl implements DemoService {
public void secureMethod() { }
}
aspect X {
// None of these match, the subject at execution(secureMethod()) does not have the annotation
// see http://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
before(): execution(@Secured! * *Service+.*(..)) { }
}
public class AspNew {
public static void main(String[] args) {
new DemoServiceImpl().secureMethod();
}
}