Example usage for org.springframework.aop.support StaticMethodMatcherPointcut subclass-usage

List of usage examples for org.springframework.aop.support StaticMethodMatcherPointcut subclass-usage

Introduction

In this page you can find the example usage for org.springframework.aop.support StaticMethodMatcherPointcut subclass-usage.

Usage

From source file com.springinpractice.ch14.kite.interceptor.GuardListSourcePointcut.java

/**
 * @version $Id$
 * @author Willie Wheeler (willie.wheeler@gmail.com)
 */
@SuppressWarnings("serial")
public class GuardListSourcePointcut extends StaticMethodMatcherPointcut implements Serializable {

From source file org.zkybase.kite.circuitbreaker.interceptor.CircuitBreakerSourcePointcut.java

/**
 * <p>
 * A circuit breaker pointcut that matches iff the underlying source has a breaker for the given method. 
 * </p>
 * 
 * @author Willie Wheeler

From source file org.ext4spring.parameter.aop.ParameterJavaBeanPointcut.java

@Component(SpringComponents.javaBeanPointcut)
public class ParameterJavaBeanPointcut extends StaticMethodMatcherPointcut {

    @Override
    public boolean matches(Method method, Class<?> clazz) {
        if (clazz.isAnnotationPresent(ParameterBean.class) && (method.getName().startsWith("get")

From source file org.springframework.aop.support.AbstractRegexpMethodPointcut.java

/**
 * Abstract base regular expression pointcut bean. JavaBean properties are:
 * <ul>
 * <li>pattern: regular expression for the fully-qualified method names to match.
 * The exact regexp syntax will depend on the subclass (e.g. Perl5 regular expressions)
 * <li>patterns: alternative property taking a String array of patterns. The result will

From source file org.jsr107.ri.annotations.spring.config.CacheStaticMethodMatcherPointcut.java

/**
 * Pointcut that delegates matching checks to a {@link CacheContextSource}.
 *
 * @author Eric Dalquist
 * @version $Revision: 656 $
 */

From source file org.springframework.aop.support.RegexpMethodPointcut.java

/**
 * Perl5 regular expression pointcut bean. JavaBean properties are:
 * <li>pattern: Perl5 regular expression for the fully-qualified method names to match
 * <li>patterns: alternative property taking a String array of patterns. The result will
 * be the union of these patterns. 
 * <li>interceptor: AOP Alliance interceptor to invoke if the pointcut matches