Interface HttpDestinationAuthentication
- All Known Subinterfaces:
AuthorizationHeaderAuthentication
,AzureFunctionsAuthentication
,ExtensionAuthorizationHeaderAuthentication
,ExtensionAzureFunctionsAuthentication
,ExtensionHttpDestinationAuthentication
public interface HttpDestinationAuthentication
HttpDestinationAuthentication
Example to create a subtype instance using the builder pattern
Example to create a subtype instance using the builder pattern
HttpDestinationAuthentication httpDestinationAuthentication = HttpDestinationAuthentication.authorizationHeaderBuilder()
headerValue("{headerValue}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder for authorizationHeader subtypebuilder for azureFunctions subtypedeepCopy
(HttpDestinationAuthentication template) factory method to create a deep copy of HttpDestinationAuthentication@NotNull String
getType()
static com.fasterxml.jackson.core.type.TypeReference<HttpDestinationAuthentication>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
getType
- Returns:
- type
-
deepCopy
@Nullable static HttpDestinationAuthentication deepCopy(@Nullable HttpDestinationAuthentication template) factory method to create a deep copy of HttpDestinationAuthentication- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
authorizationHeaderBuilder
builder for authorizationHeader subtype- Returns:
- builder
-
azureFunctionsBuilder
builder for azureFunctions subtype- Returns:
- builder
-
withHttpDestinationAuthentication
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-