| org.springframework.aop.Pointcut |
Known Indirect Subclasses
AbstractExpressionPointcut,
AbstractRegexpMethodPointcut,
AnnotationMatchingPointcut,
AspectJExpressionPointcut,
ComposablePointcut,
ControlFlowPointcut,
DynamicMethodMatcherPointcut,
ExpressionPointcut,
JdkRegexpMethodPointcut,
NameMatchMethodPointcut,
StaticMethodMatcherPointcut,
StaticMethodMatcherPointcutAdvisor
|
Class Overview
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
(e.g. through ComposablePointcut).
Summary
| Fields |
|
public
static
final
Pointcut |
TRUE |
Canonical Pointcut instance that always matches. |
Fields
public
static
final
Pointcut
TRUE
Canonical Pointcut instance that always matches.
Public Methods
public
abstract
ClassFilter
getClassFilter
()
Return the ClassFilter for this pointcut.
Returns
- the ClassFilter (never
null)
public
abstract
MethodMatcher
getMethodMatcher
()
Return the MethodMatcher for this pointcut.
Returns
- the MethodMatcher (never
null)