Uses of Interface
io.helidon.webserver.ServerRequest
-
Packages that use ServerRequest Package Description io.helidon.media.jackson.server io.helidon.media.jsonb.server io.helidon.media.jsonp.server io.helidon.security.integration.webserver Integration library for RxServer.io.helidon.webserver Reactive web server API.io.helidon.webserver.accesslog Access log support for Helidon WebServer. -
-
Uses of ServerRequest in io.helidon.media.jackson.server
Methods in io.helidon.media.jackson.server with parameters of type ServerRequest Modifier and Type Method Description void
JacksonSupport. accept(ServerRequest request, ServerResponse response)
Method parameters in io.helidon.media.jackson.server with type arguments of type ServerRequest Modifier and Type Method Description static JacksonSupport
JacksonSupport. create(BiFunction<? super ServerRequest,? super ServerResponse,? extends ObjectMapper> objectMapperProvider)
Creates a newJacksonSupport
. -
Uses of ServerRequest in io.helidon.media.jsonb.server
Methods in io.helidon.media.jsonb.server with parameters of type ServerRequest Modifier and Type Method Description void
JsonBindingSupport. accept(ServerRequest request, ServerResponse response)
Method parameters in io.helidon.media.jsonb.server with type arguments of type ServerRequest Modifier and Type Method Description static JsonBindingSupport
JsonBindingSupport. create(BiFunction<? super ServerRequest,? super ServerResponse,? extends Jsonb> jsonbProvider)
Creates a newJsonBindingSupport
. -
Uses of ServerRequest in io.helidon.media.jsonp.server
Methods in io.helidon.media.jsonp.server with parameters of type ServerRequest Modifier and Type Method Description void
JsonSupport. accept(ServerRequest request, ServerResponse response)
It registers reader and writer forJsonSupport
onServerRequest
/ServerResponse
on provided routing criteria. -
Uses of ServerRequest in io.helidon.security.integration.webserver
Methods in io.helidon.security.integration.webserver with parameters of type ServerRequest Modifier and Type Method Description void
SecurityHandler. accept(ServerRequest req, ServerResponse res)
-
Uses of ServerRequest in io.helidon.webserver
Methods in io.helidon.webserver with parameters of type ServerRequest Modifier and Type Method Description void
ErrorHandler. accept(ServerRequest req, ServerResponse res, T ex)
Error handling consumer.void
FormParamsSupport. accept(ServerRequest req, ServerResponse res)
void
Handler. accept(ServerRequest req, ServerResponse res)
void
Handler.EntityHandler. accept(ServerRequest req, ServerResponse res, T entity)
void
RequestPredicate.ConditionalHandler. accept(ServerRequest req, ServerResponse res)
protected boolean
JsonService. acceptsJson(ServerRequest request, ServerResponse response)
Determines if JSON is an accepted response type, usingAccept
and responseContent-Type
headers.boolean
RequestPredicate. test(ServerRequest request)
Evaluate this predicate.Method parameters in io.helidon.webserver with type arguments of type ServerRequest Modifier and Type Method Description RequestPredicate
RequestPredicate. and(Predicate<ServerRequest> predicate)
Returns a composed predicate that represents a logical AND expression between this predicate and another predicate.RequestPredicate
RequestPredicate. or(Predicate<ServerRequest> predicate)
Returns a composed predicate that represents a logical OR expression between this predicate and another predicate. -
Uses of ServerRequest in io.helidon.webserver.accesslog
Methods in io.helidon.webserver.accesslog that return ServerRequest Modifier and Type Method Description ServerRequest
AccessLogContext. serverRequest()
The server request.Methods in io.helidon.webserver.accesslog with parameters of type ServerRequest Modifier and Type Method Description default void
AccessLogEntry. accept(ServerRequest req, ServerResponse res)
This method allows for each log entry to register anything on the request and/or response.void
SizeLogEntry. accept(ServerRequest req, ServerResponse res)
-