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

com.microsoft.rest.credentials.ServiceClientCredentials Maven / Gradle / Ivy

There is a newer version: 1.7.14
Show newest version
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 */

package com.microsoft.rest.credentials;

import okhttp3.OkHttpClient;

/**
 * ServiceClientCredentials is the abstraction for credentials used by
 * ServiceClients accessing REST services.
 */
public interface ServiceClientCredentials {
    /**
     * Apply the credentials to the HTTP client builder.
     *
     * @param clientBuilder the builder for building up an {@link OkHttpClient}
     */
    void applyCredentialsFilter(OkHttpClient.Builder clientBuilder);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy