Properties txProps = new Properties();
txProps.setProperty("*", "PROPAGATION_REQUIRED");
txfb.setTransactionAttributes(txProps);
txfb.setTarget(object);
txfb.setProxyInterfaces(interfacesToProxyAs);
txfb.afterPropertiesSet();
return txfb.getObject();
}
}