Interface AuthorizationHeaderAuthentication

All Superinterfaces:
HttpDestinationAuthentication
All Known Subinterfaces:
ExtensionAuthorizationHeaderAuthentication

public interface AuthorizationHeaderAuthentication extends HttpDestinationAuthentication

The Authorization header will be set to the content of headerValue. The authentication scheme (such as Basic or Bearer) should be included in the headerValue.

For example, the headerValue for Basic Authentication should be set to Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==.


Example to create an instance using the builder pattern

     AuthorizationHeaderAuthentication authorizationHeaderAuthentication = AuthorizationHeaderAuthentication.builder()
             .headerValue("{headerValue}")
             .build()