in src/main/java/com/azure/servicebus/jms/ServiceBusJmsQueue.java [38:49]
protected Map<String, String> getProperties() {
Map<String, String> properties = new HashMap<>();
try {
String name = this.getQueueName();
properties.put(NAME_PROPERTY, name);
} catch (JMSException exception) {
String errorMsg = "Cannot get queue name due to exception: " + exception.getMessage();
throw new JMSRuntimeException(errorMsg, "", exception);
}
return Collections.unmodifiableMap(properties);
}