String driverClass = this.getProperty(RDBMS.DRIVER);
String jdbcURL = this.getProperty(RDBMS.PROTOCOL);
String xaDataSourceClass = this.getProperty(RDBMS.XA_DATASOURCE_CLASS);
if (DBUtils.isEmptyString(xaDataSourceClass)) {
if (DBUtils.isEmptyString(driverClass)) {
throw new DataServiceFault("Driver class cannot be null in config '" +
this.getConfigId() + "'");
}
if (DBUtils.isEmptyString(jdbcURL)) {
throw new DataServiceFault("JDBC URL cannot be null in config '" +
this.getConfigId() + "'");
}
}
this.validateDBCPSQLConfig();
}