Package com.azure.core.http.policy
Class AzureKeyCredentialPolicy
- java.lang.Object
-
- com.azure.core.http.policy.AzureKeyCredentialPolicy
-
- All Implemented Interfaces:
HttpPipelinePolicy
public final class AzureKeyCredentialPolicy extends Object implements HttpPipelinePolicy
Pipeline policy that uses anAzureKeyCredentialto set the authorization key for a request.Requests sent with this pipeline policy are required to use
HTTPS. If the request isn't usingHTTPSan exception will be thrown to prevent leaking the key.
-
-
Constructor Summary
Constructors Constructor Description AzureKeyCredentialPolicy(String name, AzureKeyCredential credential)Creates a policy that uses the passedAzureKeyCredentialto set the specified header name.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Mono<HttpResponse>process(HttpPipelineCallContext context, HttpPipelineNextPolicy next)Processes provided request context and invokes the next policy.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.azure.core.http.policy.HttpPipelinePolicy
getPipelinePosition
-
-
-
-
Constructor Detail
-
AzureKeyCredentialPolicy
public AzureKeyCredentialPolicy(String name, AzureKeyCredential credential)
Creates a policy that uses the passedAzureKeyCredentialto set the specified header name.- Parameters:
name- The name of the key header that will be set toAzureKeyCredential.getKey().credential- TheAzureKeyCredentialcontaining the authorization key to use.- Throws:
NullPointerException- Ifnameorcredentialisnull.IllegalArgumentException- Ifnameis empty.
-
-
Method Detail
-
process
public Mono<HttpResponse> process(HttpPipelineCallContext context, HttpPipelineNextPolicy next)
Description copied from interface:HttpPipelinePolicyProcesses provided request context and invokes the next policy.- Specified by:
processin interfaceHttpPipelinePolicy- Parameters:
context- The request context.next- The next policy to invoke.- Returns:
- A publisher that initiates the request upon subscription and emits a response on completion.
-
-