@Override
protected ModelNode invokeCommand(Cache<?, ?> cache, ModelNode operation) throws Exception {
CacheMgmtInterceptor interceptor = getFirstInterceptorWhichExtends(cache.getAdvancedCache()
.getInterceptorChain(), CacheMgmtInterceptor.class);
if (interceptor != null) {
interceptor.resetStatistics();
}
return null;
}
}