| 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.
|
| HttpPartParserSession |
Session object that lives for the duration of a single use of
HttpPartParser. |
| 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.
|
| HttpPartSerializerSession |
Session object that lives for the duration of a single use of
HttpPartSerializer. |
| Class | Description |
|---|---|
| BaseHttpPartParser |
Base class for implementations of
HttpPartParser |
| BaseHttpPartParserSession |
Base class for implementations of
HttpPartParserSession |
| BaseHttpPartSerializer |
Base class for implementations of
HttpPartSerializer |
| BaseHttpPartSerializerSession |
Base class for implementations of
HttpPartSerializerSession |
| Constants |
HTTP-Part constants.
|
| HttpPart |
Represents an instance of an HTTP part.
|
| HttpPartSchema |
Represents an OpenAPI schema definition.
|
| HttpPartSchemaBuilder |
The builder class for creating
HttpPartSchema objects. |
| SimplePartParser |
An implementation of
HttpPartParser that takes in the strings and tries to convert them to POJOs using constructors and static create methods. |
| SimplePartParserSession |
Session object that lives for the duration of a single use of
SimplePartParser. |
| SimplePartSerializer |
An implementation of
HttpPartSerializer that simply serializes everything using Object.toString(). |
| SimplePartSerializerSession |
Session object that lives for the duration of a single use of
SimplePartSerializer. |
| Enum | Description |
|---|---|
| HttpPartSchema.CollectionFormat |
Valid values for the
|
| HttpPartSchema.Format |
Valid values for the
|
| HttpPartSchema.Type |
Valid values for the
|
| HttpPartType |
Represents possible enum values that can be passed to the
HttpPartSerializerSession.serialize(HttpPartType, HttpPartSchema, Object). |
| Exception | Description |
|---|---|
| SchemaValidationException |
Exception thrown when an HTTP part fails schema validation during parsing.
|
Copyright © 2016–2019 The Apache Software Foundation. All rights reserved.