Class StorageSharedKeyCredentialPolicy

java.lang.Object
com.azure.storage.common.policy.StorageSharedKeyCredentialPolicy
All Implemented Interfaces:
com.azure.core.http.policy.HttpPipelinePolicy

public final class StorageSharedKeyCredentialPolicy extends Object implements com.azure.core.http.policy.HttpPipelinePolicy
Policy that adds the SharedKey into the request's Authorization header.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a SharedKey pipeline policy that adds the SharedKey into the request's authorization header.
  • Method Summary

    Modifier and Type
    Method
    Description
    Mono<com.azure.core.http.HttpResponse>
    process(com.azure.core.http.HttpPipelineCallContext context, com.azure.core.http.HttpPipelineNextPolicy next)
    Processes provided request context and invokes the next policy.
    com.azure.core.http.HttpResponse
    processSync(com.azure.core.http.HttpPipelineCallContext context, com.azure.core.http.HttpPipelineNextSyncPolicy next)
    Processes provided request context and invokes the next policy synchronously.
     

    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 Details

    • StorageSharedKeyCredentialPolicy

      public StorageSharedKeyCredentialPolicy(StorageSharedKeyCredential credential)
      Creates a SharedKey pipeline policy that adds the SharedKey into the request's authorization header.
      Parameters:
      credential - the SharedKey credential used to create the policy.
  • Method Details

    • sharedKeyCredential

      public StorageSharedKeyCredential sharedKeyCredential()
      Returns:
      the StorageSharedKeyCredential linked to the policy.
    • processSync

      public com.azure.core.http.HttpResponse processSync(com.azure.core.http.HttpPipelineCallContext context, com.azure.core.http.HttpPipelineNextSyncPolicy next)
      Description copied from interface: com.azure.core.http.policy.HttpPipelinePolicy
      Processes provided request context and invokes the next policy synchronously.
      Specified by:
      processSync in interface com.azure.core.http.policy.HttpPipelinePolicy
      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.
    • process

      public Mono<com.azure.core.http.HttpResponse> process(com.azure.core.http.HttpPipelineCallContext context, com.azure.core.http.HttpPipelineNextPolicy next)
      Description copied from interface: com.azure.core.http.policy.HttpPipelinePolicy
      Processes provided request context and invokes the next policy.
      Specified by:
      process in interface com.azure.core.http.policy.HttpPipelinePolicy
      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.