Interface VerifoneAuthProvider
-
- All Known Implementing Classes:
DefaultVerifoneAuthProvider
public interface VerifoneAuthProviderThis provider is responsible to get the Basic Authorization header.- Author:
- Dima Myroniuk (dmyroniuk)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBasicAuthorizationHeader(String applicationId, String tenantId)Returns the basic Authorization header in the format "Basic {encodedKey}".
-
-
-
Method Detail
-
getBasicAuthorizationHeader
String getBasicAuthorizationHeader(@Nullable String applicationId, @Nullable String tenantId)
Returns the basic Authorization header in the format "Basic {encodedKey}".- Parameters:
applicationId- the application idtenantId- the tenant id- Returns:
- the basic encoded header in the format "Basic {encodedKey}"
- See Also:
- BasicAuth
-
-