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

bdi.glue.http.common.HttpResponse Maven / Gradle / Ivy

package bdi.glue.http.common;

import org.json.JSONObject;

import java.util.List;

/**
 * @author @aloyer
 */
public interface HttpResponse extends Adaptable {
    int statusCode();

    List getCookies(String cookieName);

    String bodyAsText();

    JSONObject bodyAsJson();

    void dispose();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy