use of org.eclipse.smarthome.binding.digitalstrom.internal.lib.serverconnection.impl.HttpTransportImpl in project smarthome by eclipse.
the class ConnectionManagerImpl method init.
private void init(Config config, boolean acceptAllCerts) {
this.config = config;
this.transport = new HttpTransportImpl(this, acceptAllCerts);
this.digitalSTROMClient = new DsAPIImpl(transport);
if (this.genAppToken) {
this.onNotAuthenticated();
}
}
Aggregations