Package org.refcodes.net
Interface HttpInputStreamAccessor.HttpInputStreamProvider<EXC extends Exception>
-
- Type Parameters:
EXC- The exception type which may be thrown upon converting to the desired type.
- Enclosing interface:
- HttpInputStreamAccessor
public static interface HttpInputStreamAccessor.HttpInputStreamProvider<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 InputStreamtoHttpInputStream()Returns theInputStreaminstance representing the HTTP body from the implementing instance.
-
-
-
Method Detail
-
toHttpInputStream
InputStream toHttpInputStream() throws EXC extends Exception
Returns theInputStreaminstance representing the HTTP body from the implementing instance.- Returns:
- The according
InputStreaminstance represented by the implementing instance. - Throws:
EXC- Thrown in case providing the type asInputStreamfailed.EXC extends Exception
-
-