Package org.refcodes.net
Interface HttpBodyAccessor.HttpBodyProvider<EXC extends Exception>
-
- Type Parameters:
EXC- The exception type which may be thrown upon converting to the desired type.
- All Known Subinterfaces:
HttpClientRequest,HttpClientRequest.HttpClientRequestBuilder,HttpServerResponse
- All Known Implementing Classes:
HttpClientRequestImpl,HttpServerResponseImpl
- Enclosing interface:
- HttpBodyAccessor
public static interface HttpBodyAccessor.HttpBodyProvider<EXC extends Exception>A provider interface provides a "toSomething(?)" method which converts a given instance into something else. TheContentTypeAccessor.ContentTypeProviderconverts an implementing instance's state into aContentTypeinstance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringtoHttpBody()Converts an object representing the HTTP body to aStringinstance.
-
-
-
Method Detail
-
toHttpBody
String toHttpBody() throws EXC extends Exception
Converts an object representing the HTTP body to aStringinstance. Automatically determines theContentTypefrom any headers when applicable.
-
-