AMQ-6905 : Upgraded ActivationConfigProperty as per API Documentation

This commit is contained in:
asutosh936 2018-03-03 13:18:39 -06:00
parent 0bb4a5c3ab
commit a1f15f4511

View File

@ -129,7 +129,7 @@ public class ActiveMQResourceAdapter extends ActiveMQConnectionSupport implement
}
String userName = defaultValue(activationSpec.getUserName(), getInfo().getUserName());
String password = defaultValue(activationSpec.getPassword(), getInfo().getPassword());
String clientId = activationSpec.getClientId();
String clientId = defaultValue(activationSpec.getClientId(), getInfo().getClientid());
if (clientId != null) {
cf.setClientID(clientId);
} else {