Browse Source
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@367 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
3 changed files with 26 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||||||
|
|
||||||
|
package org.springframework.aop.aspectj; |
||||||
|
|
||||||
|
import org.aopalliance.intercept.MethodInterceptor; |
||||||
|
import org.aopalliance.intercept.MethodInvocation; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author robh |
||||||
|
*/ |
||||||
|
class CallCountingInterceptor implements MethodInterceptor { |
||||||
|
|
||||||
|
private int count; |
||||||
|
|
||||||
|
public Object invoke(MethodInvocation methodInvocation) throws Throwable { |
||||||
|
count++; |
||||||
|
return methodInvocation.proceed(); |
||||||
|
} |
||||||
|
|
||||||
|
public int getCount() { |
||||||
|
return count; |
||||||
|
} |
||||||
|
|
||||||
|
public void reset() { |
||||||
|
this.count = 0; |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue