use of org.springframework.aop.BeforeAdvice in project spring-framework by spring-projects.
the class AspectJPrecedenceComparatorTests method createSpringAOPBeforeAdvice.
private Advisor createSpringAOPBeforeAdvice(int order) {
BeforeAdvice advice = new BeforeAdvice() {
};
DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor(this.anyOldPointcut, advice);
advisor.setOrder(order);
return advisor;
}
Aggregations