com.apicatalog.jsonld.http.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of titanium-json-ld Show documentation
Show all versions of titanium-json-ld Show documentation
A JSON-LD 1.1 Processor & API
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();
}