View Javadoc
1   package com.atlassian.plugin.spring.scanner.runtime.impl.testservices;
2   
3   import org.aspectj.lang.ProceedingJoinPoint;
4   import org.aspectj.lang.annotation.Around;
5   import org.aspectj.lang.annotation.Aspect;
6   import org.springframework.stereotype.Component;
7   
8   @Aspect
9   @Component
10  public class ProxyEnforcerAspect {
11  
12      @Around("execution(public * com.atlassian.plugin.spring.scanner.runtime.impl.testservices.*Proxy.*(..))")
13      public Object around(ProceedingJoinPoint method) throws Throwable {
14          return method.proceed();
15      }
16  }