Package org.springframework.aop
Interface Pointcut
- All Known Subinterfaces:
- ExpressionPointcut
- All Known Implementing Classes:
- AbstractExpressionPointcut,- AbstractRegexpMethodPointcut,- AnnotationMatchingPointcut,- AspectJExpressionPointcut,- ComposablePointcut,- ControlFlowPointcut,- DynamicMethodMatcherPointcut,- JdkRegexpMethodPointcut,- NameMatchMethodPointcut,- StaticMethodMatcherPointcut,- StaticMethodMatcherPointcutAdvisor
public interface Pointcut
Core Spring pointcut abstraction.
 
A pointcut is composed of a ClassFilter and a MethodMatcher.
 Both these basic terms and a Pointcut itself can be combined to build up combinations
 (for example, through ComposablePointcut).
- Author:
- Rod Johnson
- See Also:
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionReturn the ClassFilter for this pointcut.Return the MethodMatcher for this pointcut.
- 
Field Details- 
TRUECanonical Pointcut instance that always matches.
 
- 
- 
Method Details- 
getClassFilterClassFilter getClassFilter()Return the ClassFilter for this pointcut.- Returns:
- the ClassFilter (never null)
 
- 
getMethodMatcherMethodMatcher getMethodMatcher()Return the MethodMatcher for this pointcut.- Returns:
- the MethodMatcher (never null)
 
 
-