Class ClientSecret

java.lang.Object
org.jclouds.oauth.v2.domain.ClientSecret

public abstract class ClientSecret extends Object
Details corresponding the a client_credential Azure AD Oauth request
  • Method Details

    • clientId

      public abstract String clientId()
      The ID of the client.
    • clientSecret

      public abstract String clientSecret()
      The secret of the client.
    • resource

      public abstract String resource()
      The resource to authorize against.
    • scope

      @Nullable public abstract String scope()
      The scope(s) to authorize against.
    • create

      public static ClientSecret create(String clientId, String clientSecret, String resource, String scope)