public CglibMethodInterceptor(ServiceReference<T> callableReference) {
invocationHandler = new JDKInvocationHandler(messageFactory, callableReference);
}
public CglibMethodInterceptor(Class<?> interfaze, Invocable invocable) {
invocationHandler = new JDKInvocationHandler(messageFactory, interfaze, invocable);
}