public List<InterceptorPair> getInterceptorPairList(Ioc ioc, Class<?> clazz) {
List<InterceptorPair> ipList = new ArrayList<InterceptorPair>();
for (AopConfigrationItem aopItem : aopItemList) {
if (aopItem.matchClassName(clazz.getName()))
ipList.add(new InterceptorPair( getMethodInterceptor( ioc,
aopItem.getInterceptor(),
aopItem.isSingleton()),
MethodMatcherFactory.matcher(aopItem.getMethodName())));
}
return ipList;