| Package | Description |
|---|---|
| io.helidon.security |
Security
|
| io.helidon.security.google |
Integration with Google login button.
|
| io.helidon.security.oidc |
Integration with Open ID Connect providers.
|
| io.helidon.security.provider.header |
Provider that can extract username from a (any) header.
|
| io.helidon.security.provider.httpauth |
Basic security provider, supporting "basic" and "digest" authentication schemes with role support.
|
| io.helidon.security.provider.httpsign |
Provider supporting validation of incoming signatures and signing of outbound requests.
|
| io.helidon.security.provider.jwt |
Provider that can process incoming JWTs and assert users based on them and can propagate JWTs (or create
new ones) for outbound calls.
|
| io.helidon.security.spi |
Security component's SPI.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<OutboundSecurityProvider> |
CompositeProviderSelectionPolicy.selectOutboundProviders() |
| Modifier and Type | Method and Description |
|---|---|
Security.Builder |
Security.Builder.addOutboundSecurityProvider(OutboundSecurityProvider provider)
All configured identity propagation providers are used.
|
Security.Builder |
Security.Builder.addOutboundSecurityProvider(OutboundSecurityProvider provider,
java.lang.String name)
Add a named outbound security provider.
|
| Modifier and Type | Method and Description |
|---|---|
Security.Builder |
Security.Builder.addOutboundSecurityProvider(Builder<? extends OutboundSecurityProvider> builder)
All configured identity propagation providers are used.
|
Security.Builder |
Security.Builder.addOutboundSecurityProvider(Builder<? extends OutboundSecurityProvider> build,
java.lang.String name)
Add a named outbound security provider.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GoogleTokenProvider
Provider supporting login button from front-end.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OidcProvider
Open ID Connect authentication provider.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HeaderAtnProvider
Security provider that extracts a username (or service name) from a header.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpBasicAuthProvider
Http authentication security provider.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpSignProvider
A provider that can authenticate incoming requests based on HTTP signature of header fields, and
can create signatures for outbound requests.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JwtProvider
Provider that can process JWT tokens in request headers and assert identity (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<OutboundSecurityProvider> |
ProviderSelectionPolicy.selectOutboundProviders()
Specific method for outbound providers, as we have an option to choose the first outbound provider that matches
the current request.
|
Copyright © 2018, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.