: getDiscoveryAddress();
if (connectorClassName != null)
{
Map<String, Object> connectionParams =
overrideConnectionParameters(overrideProperties.getParsedConnectionParameters(),raProperties.getParsedConnectionParameters());
TransportConfiguration transportConf = new TransportConfiguration(connectorClassName, connectionParams);
String backUpCOnnectorClassname = overrideProperties.getBackupConnectorClassName() != null ? overrideProperties.getBackupConnectorClassName()
: getBackupConnectorClassName();
Map<String, Object> backupConnectionParams =
overrideConnectionParameters(overrideProperties.getParsedBackupConnectionParameters(),
getBackupConnectionParameters());
TransportConfiguration backup = backUpCOnnectorClassname == null ? null
: new TransportConfiguration(backUpCOnnectorClassname,
backupConnectionParams);
cf = HornetQJMSClient.createConnectionFactory(transportConf, backup);
}
else if (discoveryAddress != null)