All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.soluble.pjb.bridge.http.OutputStreamFactory Maven / Gradle / Ivy

There is a newer version: 7.1.3
Show newest version
package io.soluble.pjb.bridge.http;

import java.io.IOException;
import java.io.OutputStream;

/**
 * A default output stream factory for use with parseBody.
 */
public abstract class OutputStreamFactory {
    /**
     * Return an output stream
     *
     * @return an output stream
     */
    public abstract OutputStream getOutputStream() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy