com.microsoft.azure.eventgrid.DomainCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-eventgrid Show documentation
Show all versions of azure-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
/**
* 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.azure.eventgrid;
import com.microsoft.rest.credentials.ServiceClientCredentials;
import okhttp3.Interceptor;
import okhttp3.OkHttpClient.Builder;
import okhttp3.Request;
import okhttp3.Response;
import java.io.IOException;
public class DomainCredentials implements ServiceClientCredentials {
private String domainKey;
public DomainCredentials(String domainKey) {
this.domainKey = domainKey;
}
@Override
public void applyCredentialsFilter(Builder clientBuilder) {
clientBuilder.addInterceptor(new Interceptor() {
@Override
public Response intercept(Chain chain) throws IOException {
Request newRequest = chain.request().newBuilder().addHeader("aeg-sas-key", domainKey).build();
return chain.proceed(newRequest);
}
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy