in src/main/java/com/azure/servicebus/jms/ServiceBusJmsConnectionFactory.java [110:117]
public ServiceBusJmsConnectionFactory(TokenCredential credential, String host, ServiceBusJmsConnectionFactorySettings settings){
this.settings = settings;
this.aadAuthentication = new AadAuthentication(credential);
this.userName = AAD_TOKEN_USERNAME;
this.password = this.aadAuthentication.getAadToken();
this.host = host;
this.initializeWithAad();
}