Class AuthorizationEndpoint

java.lang.Object
org.azd.oauth.types.AuthorizationEndpoint

public class AuthorizationEndpoint extends Object
Represents the required parameters for building authorization endpoint.
  • Field Details

    • clientId

      public String clientId
      The ID assigned to your app when it was registered.
    • state

      public String state
      Can be any value. Typically a generated string value that correlates the callback with its associated authorization request.
    • scope

      public List<VsoScope> scope
      List of scopes to add. Scopes registered with the app, space separated.
      See Also:
    • redirectUrl

      public String redirectUrl
      Callback URL for your app. Must exactly match the URL registered with the app.
  • Constructor Details

    • AuthorizationEndpoint

      public AuthorizationEndpoint()