mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-17 08:46:22 +10:00
[강운덕] [LUCYSUS-1744] interceptor api 변경.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@529 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -7,8 +7,8 @@ public class InterceptorRegistry {
|
||||
|
||||
private static final ConcurrentMap<String, Interceptor> INTERCEPTOR_MAP = new ConcurrentHashMap<String, Interceptor>(256);
|
||||
|
||||
public static void addInterceptor(String className, AroundInterceptor aroundInterceptor) {
|
||||
INTERCEPTOR_MAP.put(className, aroundInterceptor);
|
||||
public static void addInterceptor(String className, Interceptor interceptor) {
|
||||
INTERCEPTOR_MAP.put(className, interceptor);
|
||||
}
|
||||
|
||||
public static Interceptor getInterceptor(String className) {
|
||||
|
||||
Reference in New Issue
Block a user