- 2.57.0 (latest)
- 2.55.0
- 2.54.1
- 2.53.0
- 2.52.0
- 2.51.0
- 2.50.0
- 2.49.0
- 2.48.1
- 2.47.0
- 2.46.1
- 2.45.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.1
- 2.33.0
- 2.32.1
- 2.31.1
- 2.30.1
- 2.24.0
- 2.23.3
- 2.22.0
- 2.21.0
- 2.20.1
- 2.19.6
- 2.18.7
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.2
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.1
- 2.7.1
public interface RequestParamsExtractor<RequestT>
A request params extractor takes a request
message, extracts specific field values from
it, converts them in strings and returns them as key-value pairs, where a key is a request field
name and a value is a string representation of a field value. Nested fields should also be
extractable, in such case the "dot notation" can be used to represent a nested field name, for
example "field_name.nested_field_name"
.
Implementations of this interface are expected to be autogenerated.
Type Parameter |
|
---|---|
Name | Description |
RequestT |
Methods
extract(RequestT request)
public abstract Map<String,String> extract(RequestT request)
Extracts specific fields from the request
and returns them in a form of key-value
pairs, where a key is a field name and a value is a field's string representation. To represent
nested field names the "dot notation" can be used.
Parameter | |
---|---|
Name | Description |
request |
RequestT request message |
Returns | |
---|---|
Type | Description |
Map<String,String> |