@@ -110,3 +110,20 @@ public static String getAASServerPath() {
...
@@ -110,3 +110,20 @@ public static String getAASServerPath() {
}
}
```
```
This method returns the value of the environment variable `AASSERVERPATH` or a fallback, handling the acquisition of the value very similar to the method above.
This method returns the value of the environment variable `AASSERVERPATH` or a fallback, handling the acquisition of the value very similar to the method above.
logger.warn("An MQTT broker at tcp://esp-controller.local:1883 will be assumed going forward.");
return"tcp://esp-controller.local:1883";
}else{
return"tcp://"+uncheckedMQTTBrokerHost+":1883";
}
}
```
This method returns the value of the environment variable `MQTTBROKERHOST` or a fallback, handling the acquisition of the value very similar to the method above.