public String getName() {
return _jdoConf.getName();
}
public String getTransactionManager() throws MappingException {
TransactionDemarcation demarcation = _jdoConf.getTransactionDemarcation();
if (LocalTransactionManagerFactory.NAME.equals(demarcation.getMode())) {
return LocalTransactionManagerFactory.NAME;
} else if (demarcation.getTransactionManager() != null) {
return demarcation.getTransactionManager().getName();
} else {
String msg = "Missing configuration of TransactionManager.";
LOG.error(msg);
throw new MappingException(msg);
}