Interface EliquaAuthenticationProvider
-
- All Known Implementing Classes:
BasicAuthenticationProvider,JWTAuthenticationProvider
public interface EliquaAuthenticationProviderInterface representing an authentication provider for Eliqua services. Implementing classes should define the specific authentication mechanism used to interact with Eliqua services.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringauthenticate()Performs the authentication process and returns the authentication token.AuthenticationTypegetAuthenticationType()Retrieves the type of authentication used by this provider.StringgetHeaderKey()Retrieves the header key used for authentication.
-
-
-
Method Detail
-
getAuthenticationType
AuthenticationType getAuthenticationType()
Retrieves the type of authentication used by this provider.- Returns:
- the
AuthenticationTyperepresenting the authentication method.
-
getHeaderKey
String getHeaderKey()
Retrieves the header key used for authentication.- Returns:
- a
Stringrepresenting the header key.
-
-