SongodaCore/Core/src/main/java/com/songoda/core/http/HttpResponse.java

12 lines
233 B
Java

package com.songoda.core.http;
import java.io.IOException;
public interface HttpResponse {
int getResponseCode() throws IOException;
byte[] getBody() throws IOException;
String getBodyAsString() throws IOException;
}