Package com.authlete.common.conf
Interface AuthleteConfiguration
-
- All Known Implementing Classes:
AuthleteEnvConfiguration
,AuthletePropertiesConfiguration
,AuthleteSimpleConfiguration
public interface AuthleteConfiguration
Authlete configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getApiVersion()
Get the Authlete API version.String
getBaseUrl()
Get the base URL.String
getClientCertificate()
Get the certificate used for MTLS bound access tokens in PEM format.String
getDpopKey()
Get the public/private key pair used for DPoP signatures in JWK format.String
getServiceAccessToken()
Get the service API access tokenString
getServiceApiKey()
Get the service API key.String
getServiceApiSecret()
Get the service API secret.String
getServiceOwnerAccessToken()
Get the service owner API access tokenString
getServiceOwnerApiKey()
Get the service owner API key.String
getServiceOwnerApiSecret()
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
-
-