Uses of Class
io.helidon.security.providers.httpsign.SignedHeadersConfig.HeadersConfig
-
Packages that use SignedHeadersConfig.HeadersConfig Package Description io.helidon.security.providers.httpsign Provider supporting validation of incoming signatures and signing of outbound requests. -
-
Uses of SignedHeadersConfig.HeadersConfig in io.helidon.security.providers.httpsign
Methods in io.helidon.security.providers.httpsign that return SignedHeadersConfig.HeadersConfig Modifier and Type Method Description static SignedHeadersConfig.HeadersConfig
SignedHeadersConfig.HeadersConfig. create()
Create a config with no signed headers (e.g.static SignedHeadersConfig.HeadersConfig
SignedHeadersConfig.HeadersConfig. create(Config config)
Create a new instance from configuration.static SignedHeadersConfig.HeadersConfig
SignedHeadersConfig.HeadersConfig. create(List<String> requiredHeaders)
Create a config with required headers only (e.g.static SignedHeadersConfig.HeadersConfig
SignedHeadersConfig.HeadersConfig. create(List<String> requiredHeaders, List<String> ifPresentHeaders)
Create a new instance with both required headers and headers that are signed only if present in request.Methods in io.helidon.security.providers.httpsign with parameters of type SignedHeadersConfig.HeadersConfig Modifier and Type Method Description SignedHeadersConfig.Builder
SignedHeadersConfig.Builder. config(String method, SignedHeadersConfig.HeadersConfig config)
Configuration of a single method (seeSecurityEnvironment.method()
to set required and "if-present" headers to be signed (or to be expected in inbound signature).SignedHeadersConfig.Builder
SignedHeadersConfig.Builder. defaultConfig(SignedHeadersConfig.HeadersConfig config)
Default configuration is used by methods that do not have an explicit configuration.
-