Interface | Description |
---|---|
HttpPartParser |
Interface used to convert HTTP headers, query parameters, form-data parameters, and URI path variables to POJOs
|
HttpPartParser.Null |
Represent "no" part parser.
|
HttpPartSerializer |
Interface used to convert POJOs to simple strings in HTTP headers, query parameters, form-data parameters, and URI
path variables.
|
HttpPartSerializer.Null |
Represent "no" part part serializer.
|
Class | Description |
---|---|
SimplePartParser |
An implementation of
HttpPartParser that takes in the strings and tries to convert them to POJOs using constructors and static create methods. |
SimplePartSerializer |
An implementation of
HttpPartSerializer that simply serializes everything using Object.toString() . |
SimpleUonPartSerializer |
An extension of
UonPartSerializer with plain-text string handling. |
SimpleUonPartSerializerBuilder |
Builder class for building instances of
SimpleUonPartSerializer . |
UonPartParser |
Parses HTTP headers, query/form-data parameters, and path variables into POJOs.
|
UonPartParserBuilder |
Builder class for building instances of
UonPartParser . |
UonPartSerializer |
Serializes POJOs to values suitable for transmission as HTTP headers, query/form-data parameters, and path variables.
|
UonPartSerializerBuilder |
Builder class for building instances of
UonPartSerializer . |
Enum | Description |
---|---|
HttpPartType |
Represents possible enum values that can be passed to the
HttpPartSerializer.serialize(HttpPartType, Object) . |
Copyright © 2018 Apache. All rights reserved.