Uses of Interface
io.helidon.webserver.http.ServerRequest
Packages that use ServerRequest
Package
Description
Helidon WebServer HTTP specific APIs.
Helidon WebServer HTTP SPI.
-
Uses of ServerRequest in io.helidon.webserver.http
Subinterfaces of ServerRequest in io.helidon.webserver.httpMethods in io.helidon.webserver.http with parameters of type ServerRequestModifier and TypeMethodDescriptionbooleanHttpSecurity.authenticate(ServerRequest request, ServerResponse response, boolean requiredHint) Authenticates the current request according to security configuration.booleanHttpSecurity.authorize(ServerRequest request, ServerResponse response, String... roleHint) Authorize the current request according to security configuration.voidErrorHandler.handle(ServerRequest req, ServerResponse res, T throwable) Error handling consumer.voidHandler.handle(ServerRequest req, ServerResponse res) Handle request.voidSecureHandler.handle(ServerRequest req, ServerResponse res) Method parameters in io.helidon.webserver.http with type arguments of type ServerRequestModifier and TypeMethodDescriptionstatic HandlerHandler.create(Consumer<ServerRequest> handler) Create a handler that consumes aServerRequestand returnsStatus.OK_200.static HandlerHandler.create(Function<ServerRequest, ?> handler) Create a handler that consumes aServerRequestand returns an entity object.default HttpRouting.BuilderHttpRouting.Builder.route(Method method, String pathPattern, Consumer<ServerRequest> handler) default HttpRouting.BuilderHttpRouting.Builder.route(Method method, String pathPattern, Function<ServerRequest, ?> handler) default HttpRulesHttpRules.route(Method method, String pathPattern, Consumer<ServerRequest> handler) Add a route.default HttpRulesHttpRules.route(Method method, String pathPattern, Function<ServerRequest, ?> handler) Add a route.Constructors in io.helidon.webserver.http with parameters of type ServerRequestModifierConstructorDescriptionprotectedServerResponseBase(ConnectionContext ctx, ServerRequest request) Create server response. -
Uses of ServerRequest in io.helidon.webserver.http.spi
Methods in io.helidon.webserver.http.spi with parameters of type ServerRequestModifier and TypeMethodDescriptionbooleanSinkProvider.supports(io.helidon.common.GenericType<? extends Sink<?>> type, ServerRequest request) Checks if a provider supports the type.