Interface AzureCredentialResolver<T>

Type Parameters:
T - Azure credential implementation

public interface AzureCredentialResolver<T>
Resolver interface to resolve an azure credential implementation, the method resolve(AzureProperties) returns null if the related properties does not match.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Is the azure properties resolvable.
    Resolve the credential according to the azure properties.
  • Method Details

    • resolve

      T resolve(AzureProperties properties)
      Resolve the credential according to the azure properties.
      Parameters:
      properties - the azure properties.
      Returns:
      the azure credential.
    • isResolvable

      boolean isResolvable(AzureProperties properties)
      Is the azure properties resolvable.
      Parameters:
      properties - the azure properties.
      Returns:
      true or false.