From 2a06c2a3486fa40fae25e129df25ff29d3b15317 Mon Sep 17 00:00:00 2001 From: Woonduk Kang Date: Wed, 22 Aug 2012 06:47:12 +0000 Subject: [PATCH] =?UTF-8?q?[=EA=B0=95=EC=9A=B4=EB=8D=95]=20[LUCYSUS-1744]?= =?UTF-8?q?=20interceptor=20api=20=EB=B3=80=EA=B2=BD.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@529 84d0f5b1-2673-498c-a247-62c4ff18d310 --- .../java/com/profiler/interceptor/InterceptorRegistry.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/profiler/interceptor/InterceptorRegistry.java b/src/main/java/com/profiler/interceptor/InterceptorRegistry.java index 6210684c5..08813b6a6 100644 --- a/src/main/java/com/profiler/interceptor/InterceptorRegistry.java +++ b/src/main/java/com/profiler/interceptor/InterceptorRegistry.java @@ -7,8 +7,8 @@ public class InterceptorRegistry { private static final ConcurrentMap INTERCEPTOR_MAP = new ConcurrentHashMap(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) {