*/
public static Object createContextSwitchingProxy(
ClassLoader contextClassLoader, Class clazz, Object object) {
InvocationHandler contextSwitchingHandler =
new ContextSwitchingProxyHandler(
object, contextClassLoader);
return Proxy.newProxyInstance(contextClassLoader,
new Class[]{clazz}, contextSwitchingHandler);
}