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 interface
FormParams
Provides access to any form parameters present in the request entity.interface
Headers
ExtendsParameters
interface by adding methods convenient for HTTP headers.Classes in io.helidon.common.http that implement Parameters Modifier and Type Class Description class
ReadOnlyParameters
An immutable implementation ofParameters
.Methods in io.helidon.common.http that return Parameters Modifier and Type Method Description Parameters
HttpRequest. queryParams()
Returns query parameters.static Parameters
Parameters. toUnmodifiableParameters(Parameters parameters)
Returns an unmodifiable view.Methods in io.helidon.common.http with parameters of type Parameters Modifier and Type Method Description void
Parameters. addAll(Parameters parameters)
Copies all of the mappings from the specifiedparameters
to this instance adding values to existing associations (optional operation).void
ReadOnlyParameters. addAll(Parameters parameters)
void
Parameters. putAll(Parameters parameters)
Copies all of the mappings from the specifiedparameters
to this instance replacing values of existing associations (optional operation).void
ReadOnlyParameters. putAll(Parameters parameters)
static Parameters
Parameters. 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 Charset
ContentTypeCharset. determineCharset(Parameters headers)
Returns theCharset
specified in the content-type header, usingStandardCharsets.UTF_8
as the default.static Charset
ContentTypeCharset. determineCharset(Parameters headers, Charset defaultCharset)
Returns theCharset
specified in the content type header. -
Uses of Parameters in io.helidon.webserver
Subinterfaces of Parameters in io.helidon.webserver Modifier and Type Interface Description interface
RequestHeaders
ExtendsParameters
interface by adding HTTP request headers oriented convenient methods.interface
ResponseHeaders
ExtendsParameters
interface by adding HTTP response headers oriented constants and convenient methods.Methods in io.helidon.webserver that return Parameters Modifier and Type Method Description Parameters
RequestHeaders. cookies()
Returns cookies (parsed from 'Cookie:
' header) based on RFC6265.
-