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 prospring3.ch6.SimpleStaticPointcut.java

/**
 * ***********************************************************************
 * <p/>
 * Copyright:
 * 2012 1&1 Internet AG, Germany, http://www.1und1.de
 * <p/>

From source file staticpc.SimpleStaticPointCut.java

/**  @author igorm  */
public class SimpleStaticPointCut extends StaticMethodMatcherPointcut {

    @Override
    public boolean matches(Method method, Class<?> targetClass) {
        return "foo".equals(method.getName());

From source file net.easysmarthouse.service.scripting.ScriptDecoratorPointcut.java

/**
 *
 * @author rusakovich
 */
public class ScriptDecoratorPointcut extends StaticMethodMatcherPointcut {

From source file by.creepid.docsreporter.context.ContextMatcherPointcut.java

/**
 *
 * @author rusakovich
 */
public class ContextMatcherPointcut extends StaticMethodMatcherPointcut {

From source file com.github.spring.mvc.util.handler.UriMatchingStaticMethodMatcherPointcut.java

public class UriMatchingStaticMethodMatcherPointcut extends StaticMethodMatcherPointcut {

    @Override
    public boolean matches(Method method, Class<?> targetClass) {
        return targetClass.isAnnotationPresent(Includes.class) || targetClass.isAnnotationPresent(Excludes.class);
    }

From source file net.sourceforge.safr.core.spring.advice.SecurityAttributeSourcePointcut.java

/**
 * @author Martin Krasser
 */
class SecurityAttributeSourcePointcut extends StaticMethodMatcherPointcut {

    private SecurityAttributeSource source;

From source file com.developmentsprint.spring.breaker.interceptor.CircuitBreakerAttributeSourcePointcut.java

abstract class CircuitBreakerAttributeSourcePointcut extends StaticMethodMatcherPointcut implements Serializable {

    private static final long serialVersionUID = 1L;

    @Override
    public boolean matches(Method method, Class<?> targetClass) {

From source file com.googlecode.ehcache.annotations.impl.CacheStaticMethodMatcherPointcut.java

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

From source file org.zkybase.kite.throttle.interceptor.ThrottleSourcePointcut.java

/**
 * A throttle pointcut that matches iff either the underlying source has a throttle for the given method.
 * 
 * @author Willie Wheeler
 * @since 1.0
 */

From source file org.zkybase.kite.interceptor.GuardListSourcePointcut.java

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