public abstract class ConnectionPropertiesPatcher {
protected static final String URL_PREFIX = "Url=";
protected ConnectionProperties connectionProperties;
public static ConnectionPropertiesPatcher getPatcher(String _dbType, ConnectionProperties connectionProperties) {
DbType dbType = DbType.valueOf(_dbType);
ConnectionPropertiesPatcher patcher = null;
switch (dbType) {
case db2:
patcher = new Db2Patcher();
break;