Package org.projectnessie.client.http
Interface HttpClient
-
- All Known Implementing Classes:
JavaHttpClient,UrlConnectionClient
public interface HttpClientSimple Http client to make REST calls.Assumptions: - always send/receive JSON - set headers accordingly by default - very simple interactions w/ API - no cookies - no caching of connections. Could be slow
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classHttpClient.Builderstatic classHttpClient.Method
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static HttpClient.Builderbuilder()java.net.URIgetBaseUri()HttpRequestnewRequest()
-
-
-
Method Detail
-
newRequest
HttpRequest newRequest()
-
builder
static HttpClient.Builder builder()
-
getBaseUri
java.net.URI getBaseUri()
-
-