Search in sources :

Example 1 with HttpTransportImpl

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();
    }
}
Also used : HttpTransportImpl(org.eclipse.smarthome.binding.digitalstrom.internal.lib.serverconnection.impl.HttpTransportImpl) DsAPIImpl(org.eclipse.smarthome.binding.digitalstrom.internal.lib.serverconnection.impl.DsAPIImpl)

Aggregations

DsAPIImpl (org.eclipse.smarthome.binding.digitalstrom.internal.lib.serverconnection.impl.DsAPIImpl)1 HttpTransportImpl (org.eclipse.smarthome.binding.digitalstrom.internal.lib.serverconnection.impl.HttpTransportImpl)1