public interface

Pointcut

org.springframework.aop.Pointcut
Known Indirect Subclasses

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.
Public Methods
abstract ClassFilter getClassFilter()
Return the ClassFilter for this pointcut.
abstract MethodMatcher getMethodMatcher()
Return the MethodMatcher for this pointcut.

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)