use of lora.ns.loriot.rest.LoriotService in project cumulocity-lora by SoftwareAG.
the class LoriotConnector method init.
@Override
protected void init() {
OkHttpClient okHttpClient = new OkHttpClient.Builder().addInterceptor(new APIKeyInterceptor()).build();
Retrofit retrofit = new Retrofit.Builder().client(okHttpClient).baseUrl(getProperties().getProperty("url")).addConverterFactory(JacksonConverterFactory.create()).build();
loriotService = retrofit.create(LoriotService.class);
}
Aggregations