Package com.authlete.common.conf
Interface AuthleteConfiguration
-
- All Known Implementing Classes:
AuthleteEnvConfiguration,AuthletePropertiesConfiguration,AuthleteSimpleConfiguration
public interface AuthleteConfigurationAuthlete configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetApiVersion()Get the Authlete API version.StringgetBaseUrl()Get the base URL.StringgetClientCertificate()Get the certificate used for MTLS bound access tokens in PEM format.StringgetDpopKey()Get the public/private key pair used for DPoP signatures in JWK format.StringgetServiceAccessToken()Get the service API access tokenStringgetServiceApiKey()Get the service API key.StringgetServiceApiSecret()Get the service API secret.StringgetServiceOwnerAccessToken()Get the service owner API access tokenStringgetServiceOwnerApiKey()Get the service owner API key.StringgetServiceOwnerApiSecret()Get the service owner API secret.
-
-
-
Method Detail
-
getApiVersion
String getApiVersion()
Get the Authlete API version.- Since:
- 3.23
-
getBaseUrl
String getBaseUrl()
Get the base URL.
-
getServiceOwnerApiKey
String getServiceOwnerApiKey()
Get the service owner API key.
-
getServiceOwnerApiSecret
String getServiceOwnerApiSecret()
Get the service owner API secret.
-
getServiceOwnerAccessToken
String getServiceOwnerAccessToken()
Get the service owner API access token
-
getServiceApiKey
String getServiceApiKey()
Get the service API key.
-
getServiceApiSecret
String getServiceApiSecret()
Get the service API secret.
-
getServiceAccessToken
String getServiceAccessToken()
Get the service API access token
-
getDpopKey
String getDpopKey()
Get the public/private key pair used for DPoP signatures in JWK format.- Since:
- 2.73
-
getClientCertificate
String getClientCertificate()
Get the certificate used for MTLS bound access tokens in PEM format.- Since:
- 2.73
-
-