Uses of Class
io.helidon.microprofile.security.JerseySecurityFeature.Builder
Package
Description
Integration of Helidon security with Microprofile server.
-
Uses of JerseySecurityFeature.Builder in io.helidon.microprofile.security
Modifier and TypeMethodDescriptionJerseySecurityFeature.Builder.addQueryParamHandler
(QueryParamHandler handler) Add a new handler to extract query parameter and store it in security request header.JerseySecurityFeature.Builder.addQueryParamHandlers
(Iterable<QueryParamHandler> handlers) Add handlers to extract query parameters and store them in security request header.JerseySecurityFeature.Builder.authenticateAnnotatedOnly
(boolean authnOnly) Whether to authorize only annotated methods (withAuthenticated
annotation or all.JerseySecurityFeature.Builder.authorizeAnnotatedOnly
(boolean authzOnly) Whether to authorize only annotated methods (withAuthorized
annotation) or all.Builder forJerseySecurityFeature
.Update this builder from configuration.JerseySecurityFeature.Builder.debug()
Set debugging on.JerseySecurityFeature.Builder.useAbortWith
(boolean useAbortWith) When set totrue
(which is the default behavior, the security filter would useContainerRequest.abortWith(jakarta.ws.rs.core.Response)
to abort request and configure a security response.JerseySecurityFeature.Builder.usePrematchingAuthentication
(boolean usePrematching) Configure whether pre-matching or post-matching filter is used to authenticate requests.JerseySecurityFeature.Builder.usePrematchingAuthorization
(boolean usePrematching) Configure whether pre-matching or post-matching filter is used to authorize requests.