Package io.helidon.common.http
Interface FormParams
-
- All Superinterfaces:
Parameters
public interface FormParams extends Parameters
Provides access to any form parameters present in the request entity.
-
-
Method Summary
Static Methods Modifier and Type Method Description static FormParams
create(String paramAssignments, MediaType mediaType)
Creates a newFormParams
instance using the provided assignment string and media type.-
Methods inherited from interface io.helidon.common.http.Parameters
add, add, addAll, all, computeIfAbsent, computeSingleIfAbsent, first, put, put, putAll, putIfAbsent, putIfAbsent, remove, toMap
-
-
-
-
Method Detail
-
create
static FormParams create(String paramAssignments, MediaType mediaType)
Creates a newFormParams
instance using the provided assignment string and media type.- Parameters:
paramAssignments
- String containing the parameter assignments, formatted according to the media type specified (& separator for URL-encoded, NL for text/plain)mediaType
- MediaType for which the parameter conversion is occurring- Returns:
- the new
FormParams
instance
-
-