Uses of Interface
io.helidon.webserver.ServerRequest
-
Packages that use ServerRequest Package Description io.helidon.integrations.micrometer Support for Micrometer in Helidon SE.io.helidon.openapi Helidon SE OpenAPI Support.io.helidon.security.integration.grpc Integration library forGrpcServer
.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.io.helidon.webserver.context.propagation Propagation of context data across HTTP for HelidonWebServer
.io.helidon.webserver.cors Helidon SE CORS Support -
-
Uses of ServerRequest in io.helidon.integrations.micrometer
Method parameters in io.helidon.integrations.micrometer with type arguments of type ServerRequest Modifier and Type Method Description MeterRegistryFactory.Builder
MeterRegistryFactory.Builder. enrollRegistry(io.micrometer.core.instrument.MeterRegistry meterRegistry, Function<ServerRequest,Optional<Handler>> handlerFunction)
Records aMetricRegistry
to be managed byMicrometerSupport
, along with the function that returns anOptional
of aHandler
for processing a given request to the Micrometer endpoint. -
Uses of ServerRequest in io.helidon.openapi
Methods in io.helidon.openapi with parameters of type ServerRequest Modifier and Type Method Description boolean
OpenApiUi. prepareTextResponseFromMainEndpoint(ServerRequest request, ServerResponse response)
Gives the UI an opportunity to respond to a request arriving at theOpenAPISupport
endpoint for which the best-acceptedMediaType
wastext/html
.protected boolean
OpenApiUiBase. sendStaticText(ServerRequest request, ServerResponse response, MediaType mediaType)
Sends a static text response of the given media type. -
Uses of ServerRequest in io.helidon.security.integration.grpc
Methods in io.helidon.security.integration.grpc with parameters of type ServerRequest Modifier and Type Method Description static GrpcClientSecurity.Builder
GrpcClientSecurity. builder(ServerRequest req)
Obtain aGrpcClientSecurity
builder.static GrpcClientSecurity
GrpcClientSecurity. create(ServerRequest req)
Create aGrpcClientSecurity
instance. -
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)
Deprecated.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)
-
Uses of ServerRequest in io.helidon.webserver.context.propagation
Methods in io.helidon.webserver.context.propagation with parameters of type ServerRequest Modifier and Type Method Description void
ContextPropagationFilter. accept(ServerRequest req, ServerResponse res)
void
PropagationRecord. apply(ServerRequest req)
Apply this record on the server request, reading the header and registering the context value. -
Uses of ServerRequest in io.helidon.webserver.cors
Methods in io.helidon.webserver.cors with parameters of type ServerRequest Modifier and Type Method Description void
CorsSupport. accept(ServerRequest request, ServerResponse response)
-