String cacheName = "";
Method method = null;
try {
method = this.getInterceptedMethod(pjp);
Cacheflush annotation = method.getAnnotation(Cacheflush.class);
cacheName = annotation != null ? annotation.cacheName() : "default";
} catch(Exception e) {
LOGGER.severe(StackTraceUtil.getStackTrace(e));
cacheName = "default";
}