Uses of Interface
org.springframework.aop.ClassFilter
Packages that use ClassFilter
Package
Description
Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces.
AspectJ integration package.
Convenience classes for using Spring's AOP API.
Annotation support for AOP pointcuts.
-
Uses of ClassFilter in org.springframework.aop
Fields in org.springframework.aop declared as ClassFilterModifier and TypeFieldDescriptionstatic final ClassFilterClassFilter.TRUECanonical instance of aClassFilterthat matches all classes.Methods in org.springframework.aop that return ClassFilterModifier and TypeMethodDescriptionIntroductionAdvisor.getClassFilter()Return the filter determining which target classes this introduction should apply to.Pointcut.getClassFilter()Return the ClassFilter for this pointcut. -
Uses of ClassFilter in org.springframework.aop.aspectj
Classes in org.springframework.aop.aspectj that implement ClassFilterModifier and TypeClassDescriptionclassSpringPointcutimplementation that uses the AspectJ weaver to evaluate a pointcut expression.classSpring AOPClassFilterimplementation using AspectJ type matching.Methods in org.springframework.aop.aspectj that return ClassFilterModifier and TypeMethodDescriptionAspectJExpressionPointcut.getClassFilter()DeclareParentsAdvisor.getClassFilter() -
Uses of ClassFilter in org.springframework.aop.support
Classes in org.springframework.aop.support that implement ClassFilterModifier and TypeClassDescriptionclassPointcut and method matcher for use as a simple cflow-style pointcut.classSimpleIntroductionAdvisorimplementation that by default applies to any class.classSimple ClassFilter implementation that passes classes (and optionally subclasses).Methods in org.springframework.aop.support that return ClassFilterModifier and TypeMethodDescriptionComposablePointcut.getClassFilter()ControlFlowPointcut.getClassFilter()DefaultIntroductionAdvisor.getClassFilter()DynamicMethodMatcherPointcut.getClassFilter()StaticMethodMatcherPointcut.getClassFilter()static ClassFilterClassFilters.intersection(ClassFilter[] classFilters) Match all classes that all of the given ClassFilters match.static ClassFilterClassFilters.intersection(ClassFilter cf1, ClassFilter cf2) Match all classes that both of the given ClassFilters match.static ClassFilterClassFilters.negate(ClassFilter classFilter) Return a class filter that represents the logical negation of the specified filter instance.static ClassFilterClassFilters.union(ClassFilter[] classFilters) Match all classes that either (or all) of the given ClassFilters matches.static ClassFilterClassFilters.union(ClassFilter cf1, ClassFilter cf2) Match all classes that either (or both) of the given ClassFilters matches.Methods in org.springframework.aop.support with parameters of type ClassFilterModifier and TypeMethodDescriptionstatic ClassFilterClassFilters.intersection(ClassFilter[] classFilters) Match all classes that all of the given ClassFilters match.static ClassFilterClassFilters.intersection(ClassFilter cf1, ClassFilter cf2) Match all classes that both of the given ClassFilters match.ComposablePointcut.intersection(ClassFilter other) Apply an intersection with the given ClassFilter.static ClassFilterClassFilters.negate(ClassFilter classFilter) Return a class filter that represents the logical negation of the specified filter instance.voidNameMatchMethodPointcutAdvisor.setClassFilter(ClassFilter classFilter) Set theClassFilterto use for this pointcut.voidStaticMethodMatcherPointcut.setClassFilter(ClassFilter classFilter) Set theClassFilterto use for this pointcut.static ClassFilterClassFilters.union(ClassFilter[] classFilters) Match all classes that either (or all) of the given ClassFilters matches.static ClassFilterClassFilters.union(ClassFilter cf1, ClassFilter cf2) Match all classes that either (or both) of the given ClassFilters matches.ComposablePointcut.union(ClassFilter other) Apply a union with the given ClassFilter.Constructors in org.springframework.aop.support with parameters of type ClassFilterModifierConstructorDescriptionComposablePointcut(ClassFilter classFilter) Create a ComposablePointcut for the given ClassFilter, withMethodMatcher.TRUE.ComposablePointcut(ClassFilter classFilter, MethodMatcher methodMatcher) Create a ComposablePointcut for the given ClassFilter and MethodMatcher. -
Uses of ClassFilter in org.springframework.aop.support.annotation
Classes in org.springframework.aop.support.annotation that implement ClassFilterModifier and TypeClassDescriptionclassSimple ClassFilter that looks for a specific annotation being present on a class.Methods in org.springframework.aop.support.annotation that return ClassFilter