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

com.apicatalog.jsonld.http.HttpResponse Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
package com.apicatalog.jsonld.http;

import java.io.Closeable;
import java.io.InputStream;
import java.util.Collection;
import java.util.Optional;

public interface HttpResponse extends Closeable {

    int statusCode();

    InputStream body();

    Collection links();

    Optional contentType();

    Optional location();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy