private boolean processMethodInterceptor(Method method) {
CPrePersist prePersist = method.getAnnotation(CPrePersist.class);
CPreDelete preRemove = method.getAnnotation(CPreDelete.class);
CPostDelete postDelete = method.getAnnotation(CPostDelete.class);
CPostLoad postLoad = method.getAnnotation(CPostLoad.class);
CPostPersist postPersist = method.getAnnotation(CPostPersist.class);
boolean interceptor = false;
if (prePersist != null) {