package org.theonefx.wcframework.cache;
import org.theonefx.aopaloance.intercept.MethodInterceptor;
import org.theonefx.aopaloance.intercept.MethodInvocation;
class CacheMethodInterceptor implements MethodInterceptor {
private MethodCacheManager cacheManager;
public CacheMethodInterceptor(MethodCacheManager cacheManager) {
this.cacheManager = cacheManager;
}
@Override
public Object invoke(MethodInvocation invocation) throws Throwable {
return invocation.proceed();
}
}