All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.buybuddy.networking.http.AuthenticatedHttpClientFactory Maven / Gradle / Ivy

The newest version!
package co.buybuddy.networking.http;

import co.buybuddy.Context;

public class AuthenticatedHttpClientFactory extends HttpClientFactory {
    private Context context;

    public AuthenticatedHttpClientFactory(Context context) {
        super();

        this.context = context;
        this.client = (HttpClient)this.client.newBuilder()
                .addInterceptor(new AuthenticationInterceptor(context))
                .build();
    }

    public Context getContext() {
        return context;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy