Uses of Interface
io.helidon.common.http.Parameters
-
Packages that use Parameters Package Description io.helidon.common.http HTTP APIs and implementations usable by both server and client side of the HTTP story.io.helidon.media.common Common classes for processing content with a specificMediaType.io.helidon.webserver Reactive web server API. -
-
Uses of Parameters in io.helidon.common.http
Subinterfaces of Parameters in io.helidon.common.http Modifier and Type Interface Description interfaceFormParamsProvides access to any form parameters present in the request entity.interfaceHeadersExtendsParametersinterface by adding methods convenient for HTTP headers.Classes in io.helidon.common.http that implement Parameters Modifier and Type Class Description classReadOnlyParametersAn immutable implementation ofParameters.Methods in io.helidon.common.http that return Parameters Modifier and Type Method Description ParametersHttpRequest. queryParams()Returns query parameters.static ParametersParameters. toUnmodifiableParameters(Parameters parameters)Returns an unmodifiable view.Methods in io.helidon.common.http with parameters of type Parameters Modifier and Type Method Description voidParameters. addAll(Parameters parameters)Copies all of the mappings from the specifiedparametersto this instance adding values to existing associations (optional operation).voidReadOnlyParameters. addAll(Parameters parameters)voidParameters. putAll(Parameters parameters)Copies all of the mappings from the specifiedparametersto this instance replacing values of existing associations (optional operation).voidReadOnlyParameters. putAll(Parameters parameters)static ParametersParameters. toUnmodifiableParameters(Parameters parameters)Returns an unmodifiable view.Constructors in io.helidon.common.http with parameters of type Parameters Constructor Description ReadOnlyParameters(Parameters parameters)Creates an instance from provided multi-map. -
Uses of Parameters in io.helidon.media.common
Methods in io.helidon.media.common with parameters of type Parameters Modifier and Type Method Description static CharsetContentTypeCharset. determineCharset(Parameters headers)Returns theCharsetspecified in the content-type header, usingStandardCharsets.UTF_8as the default.static CharsetContentTypeCharset. determineCharset(Parameters headers, Charset defaultCharset)Returns theCharsetspecified in the content type header. -
Uses of Parameters in io.helidon.webserver
Subinterfaces of Parameters in io.helidon.webserver Modifier and Type Interface Description interfaceRequestHeadersExtendsParametersinterface by adding HTTP request headers oriented convenient methods.interfaceResponseHeadersExtendsParametersinterface by adding HTTP response headers oriented constants and convenient methods.Methods in io.helidon.webserver that return Parameters Modifier and Type Method Description ParametersRequestHeaders. cookies()Returns cookies (parsed from 'Cookie:' header) based on RFC6265.
-