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.media.multipart Helidon Media MultiPart.io.helidon.security Securityio.helidon.webclient A reactive client for rest calls.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 classHashParametersAConcurrentSkipListMapbasedParametersimplementation with case-insensitive keys and immutableListof values that needs to be copied on each write.classReadOnlyParametersAn immutable implementation ofParameters.Methods in io.helidon.common.http that return Parameters Modifier and Type Method Description ParametersParameters. add(String key, Iterable<String> values)Adds specified values tu association with the specified key (optional operation).ParametersParameters. add(String key, String... values)Adds specified values tu association with the specified key (optional operation).ParametersParameters. addAll(Parameters parameters)Copies all of the mappings from the specifiedparametersto this instance adding values to existing associations (optional operation).static ParametersUriComponent. decodeQuery(String query, boolean decode)Decode the query component of a URI.static ParametersUriComponent. decodeQuery(String query, boolean decodeNames, boolean decodeValues)Decode the query component of a URI.ParametersParameters. putAll(Parameters parameters)Copies all of the mappings from the specifiedparametersto this instance replacing values of existing associations (optional operation).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 HashParametersHashParameters. addAll(Parameters parameters)ParametersParameters. addAll(Parameters parameters)Copies all of the mappings from the specifiedparametersto this instance adding values to existing associations (optional operation).ReadOnlyParametersReadOnlyParameters. addAll(Parameters parameters)static HashParametersHashParameters. concat(Parameters... parameters)Creates new instance ofHashParametersas a concatenation of provided parameters.static HashParametersHashParameters. create(Parameters initialContent)Creates a new instanceHashParametersfrom provided data.HashParametersHashParameters. putAll(Parameters parameters)ParametersParameters. putAll(Parameters parameters)Copies all of the mappings from the specifiedparametersto this instance replacing values of existing associations (optional operation).ReadOnlyParametersReadOnlyParameters. putAll(Parameters parameters)static ParametersParameters. toUnmodifiableParameters(Parameters parameters)Returns an unmodifiable view.Method parameters in io.helidon.common.http with type arguments of type Parameters Modifier and Type Method Description static HashParametersHashParameters. concat(Iterable<Parameters> parameters)Creates new instance ofHashParametersas a concatenation of provided parameters.Constructors in io.helidon.common.http with parameters of type Parameters Constructor Description HashParameters(Parameters initialContent)Creates a new instance from provided data.ReadOnlyParameters(Parameters parameters)Creates an instance from provided multi-map. -
Uses of Parameters in io.helidon.media.common
Methods in io.helidon.media.common that return Parameters Modifier and Type Method Description ParametersMessageBodyWriterContext. headers()Get the underlying headers.Methods in io.helidon.media.common with parameters of type Parameters Modifier and Type Method Description static MessageBodyWriterContextMessageBodyWriterContext. create(Parameters headers)Create a new empty writer context backed by the specified headers.static MessageBodyWriterContextMessageBodyWriterContext. create(MediaContext mediaContext, MessageBodyContext.EventListener eventListener, Parameters headers, List<MediaType> acceptedTypes)Create a new writer context.static MessageBodyWriterContextMessageBodyWriterContext. create(MessageBodyWriterContext parent, Parameters headers)Create a new parented writer context backed by the specified headers.static MessageBodyWriterContextMessageBodyWriterContext. create(MessageBodyWriterContext parent, MessageBodyContext.EventListener eventListener, Parameters headers, List<MediaType> acceptedTypes)Create a new writer context.static CharsetContentTypeCharset. determineCharset(Parameters headers)Deprecated.Returns theCharsetspecified in the content-type header, usingStandardCharsets.UTF_8as the default.static CharsetContentTypeCharset. determineCharset(Parameters headers, Charset defaultCharset)Deprecated.Returns theCharsetspecified in the content type header. -
Uses of Parameters in io.helidon.media.multipart
Subinterfaces of Parameters in io.helidon.media.multipart Modifier and Type Interface Description interfaceBodyPartHeadersBody part headers.Classes in io.helidon.media.multipart that implement Parameters Modifier and Type Class Description classReadableBodyPartHeadersReadable body part headers.classWriteableBodyPartHeadersWriteable body part headers. -
Uses of Parameters in io.helidon.security
Methods in io.helidon.security that return Parameters Modifier and Type Method Description ParametersSecurityEnvironment. queryParams()Query parameters obtained from the request.Methods in io.helidon.security with parameters of type Parameters Modifier and Type Method Description SecurityEnvironment.BuilderSecurityEnvironment.Builder. queryParams(Parameters queryParams)Add query parameters of the request. -
Uses of Parameters in io.helidon.webclient
Subinterfaces of Parameters in io.helidon.webclient Modifier and Type Interface Description interfaceWebClientRequestHeadersHeaders that can be modified (until request is sent) for outbound request.interfaceWebClientResponseHeadersHeaders that may be available on response from server.Methods in io.helidon.webclient with parameters of type Parameters Modifier and Type Method Description WebClientRequestHeadersWebClientRequestHeaders. addAll(Parameters parameters)default WebClientRequestBuilderWebClientRequestBuilder. addHeaders(Parameters parameters)Copies all of the mappings from the specifiedparametersto this response headers instance.WebClientRequestHeadersWebClientRequestHeaders. putAll(Parameters parameters)WebClientRequestBuilderWebClientRequestBuilder. queryParams(Parameters queryParams)Configure query parameters. -
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.Methods in io.helidon.webserver with parameters of type Parameters Modifier and Type Method Description ResponseHeadersResponseHeaders. addAll(Parameters parameters)default ServerResponseServerResponse. addHeaders(Parameters parameters)Copies all of the mappings from the specifiedparametersto this response headers instance.ResponseHeadersResponseHeaders. putAll(Parameters parameters)
-