public String getDBType() {
return dBName;
}
public RepositoryService getRepositoryService() {
RepositoryService result ;
if (dBName.equals(DBType.OracleDBName)) return RepositoryService.ORACLE;
else if (dBName.equals(DBType.MSSQLDBName)) return RepositoryService.MSSQL ;
else
throw new IllegalArgumentException("not supported db type") ;
}