Decorates a business delegate object with a wrapper. The
object returned by this method will implement all of the interfaces
originally implemented by the target.
return Proxy.newProxyInstance(delegate.getClass().getClassLoader(),
delegate.getClass().getInterfaces(),
new XAWrapperHandler(delegate));