io.github.stewseo.client.transport.endpoints.BinaryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yelp-fusion-client Show documentation
Show all versions of yelp-fusion-client Show documentation
java client to build api objects, handle http transport, and parse/deserialize/serialize json to/from json
package io.github.stewseo.client.transport.endpoints;
import java.io.IOException;
import java.io.InputStream;
public interface BinaryResponse extends AutoCloseable {
String contentType();
long contentLength();
InputStream content() throws IOException;
@Override
void close() throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy