private void initializeWithSas()

in src/main/java/com/azure/servicebus/jms/ServiceBusJmsConnectionFactory.java [129:144]


    private void initializeWithSas() {
        if (this.settings == null) {
            this.settings = new ServiceBusJmsConnectionFactorySettings();
        }

    	this.initialize(this.userName, this.password, this.host);
    	if (this.builder == null) {
            try {
                this.builder = new ConnectionStringBuilder(new URI(host), null, this.userName, this.password);
            } catch (URISyntaxException e) {
                throw new RuntimeException(e);
            }
        }
    	
    	this.initialized = true;
    }