Uses of Interface
io.helidon.webserver.ServerResponse
-
Packages that use ServerResponse Package Description 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.cors Helidon SE CORS Support -
-
Uses of ServerResponse in io.helidon.security.integration.webserver
Methods in io.helidon.security.integration.webserver with parameters of type ServerResponse Modifier and Type Method Description voidSecurityHandler. accept(ServerRequest req, ServerResponse res) -
Uses of ServerResponse in io.helidon.webserver
Methods in io.helidon.webserver that return types with arguments of type ServerResponse Modifier and Type Method Description Single<ServerResponse>ServerResponse. send()Sends an empty response.Single<ServerResponse>ServerResponse. send(Flow.Publisher<DataChunk> content)Send a message as is without any other marshalling.<T> Single<ServerResponse>ServerResponse. send(Flow.Publisher<T> content, Class<T> clazz)Send a message with the given entity stream as content and close the response.<T> Single<ServerResponse>ServerResponse. send(T content)Send a message and close the response.Single<ServerResponse>ServerResponse. whenSent()Completion stage is completed when response is completed.Methods in io.helidon.webserver with parameters of type ServerResponse Modifier and Type Method Description voidErrorHandler. accept(ServerRequest req, ServerResponse res, T ex)Error handling consumer.voidFormParamsSupport. accept(ServerRequest req, ServerResponse res)voidHandler. accept(ServerRequest req, ServerResponse res)voidHandler.EntityHandler. accept(ServerRequest req, ServerResponse res, T entity)voidRequestPredicate.ConditionalHandler. accept(ServerRequest req, ServerResponse res)protected booleanJsonService. acceptsJson(ServerRequest request, ServerResponse response)Determines if JSON is an accepted response type, usingAcceptand responseContent-Typeheaders. -
Uses of ServerResponse in io.helidon.webserver.accesslog
Methods in io.helidon.webserver.accesslog that return ServerResponse Modifier and Type Method Description ServerResponseAccessLogContext. serverResponse()The server response, after data was sent.Methods in io.helidon.webserver.accesslog with parameters of type ServerResponse Modifier and Type Method Description default voidAccessLogEntry. accept(ServerRequest req, ServerResponse res)This method allows for each log entry to register anything on the request and/or response.voidSizeLogEntry. accept(ServerRequest req, ServerResponse res) -
Uses of ServerResponse in io.helidon.webserver.cors
Methods in io.helidon.webserver.cors with parameters of type ServerResponse Modifier and Type Method Description voidCorsSupport. accept(ServerRequest request, ServerResponse response)
-