Interface HttpInputStreamAccessor.HttpInputStreamProvider<EXC extends java.lang.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 java.lang.Exception>
    A provider interface provides a "toSomething(?)" method which converts a given instance into something else. The ContentTypeAccessor.ContentTypeProvider converts an implementing instance's state into a ContentType instance.
    • Method Detail

      • toHttpInputStream

        java.io.InputStream toHttpInputStream()
                                       throws EXC extends java.lang.Exception
        Returns the InputStream instance representing the HTTP body from the implementing instance.
        Returns:
        The according InputStream instance represented by the implementing instance.
        Throws:
        EXC - Thrown in case providing the type as InputStream failed.
        EXC extends java.lang.Exception