if (xaResource instanceof XAResourceProxy) {
XAResourceProxy other = (XAResourceProxy) xaResource;
return transactionManager.getGroupName().equals(other.transactionManager.getGroupName());
}
if (xaResource instanceof XAResourceImpl) {
XAResourceImpl other = (XAResourceImpl) xaResource;
return transactionManager.getGroupName().equals(other.getGroupName());
}
return false;
}