All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openmetadata.client.security.interfaces.Auth0AccessTokenApi Maven / Gradle / Ivy

There is a newer version: 1.5.4
Show newest version
package org.openmetadata.client.security.interfaces;

import feign.Headers;
import feign.RequestLine;
import org.openmetadata.client.ApiClient;
import org.openmetadata.client.model.AccessTokenResponse;

public interface Auth0AccessTokenApi extends ApiClient.Api {

  @RequestLine("POST /oauth/token")
  @Headers({
    "Content-Type: application/x-www-form-urlencoded",
    "Accept: application/json",
  })
  AccessTokenResponse getAccessToken();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy