| Package | Description |
|---|---|
| com.atlassian.marketplace.client.http |
Interfaces and classes related to the HTTP transport layer.
|
| com.atlassian.marketplace.client.impl |
Internal implementation of Marketplace client APIs.
|
| Modifier and Type | Method and Description |
|---|---|
SimpleHttpResponse |
HttpTransport.delete(URI uri)
Performs an HTTP DELETE.
|
SimpleHttpResponse |
HttpTransport.get(URI uri)
Performs an HTTP GET.
|
SimpleHttpResponse |
HttpTransport.patch(URI uri,
byte[] content)
Performs an HTTP PATCH.
|
SimpleHttpResponse |
HttpTransport.post(URI uri,
InputStream content,
long length,
String contentType,
String acceptContentType,
Optional<Consumer<org.apache.http.client.methods.HttpPost>> modifyRequest)
Performs an HTTP POST of an API entity.
|
SimpleHttpResponse |
HttpTransport.postParams(URI uri,
com.google.common.collect.Multimap<String,String> params)
Performs an HTTP POST with form parameters.
|
SimpleHttpResponse |
HttpTransport.put(URI uri,
byte[] content)
Performs an HTTP PUT of an API entity.
|
| Modifier and Type | Method and Description |
|---|---|
SimpleHttpResponse |
CommonsHttpTransport.delete(URI uri) |
SimpleHttpResponse |
CommonsHttpTransport.get(URI uri) |
SimpleHttpResponse |
CommonsHttpTransport.patch(URI uri,
byte[] content) |
SimpleHttpResponse |
CommonsHttpTransport.post(URI uri,
InputStream content,
long length,
String contentType,
String acceptContentType,
Optional<Consumer<org.apache.http.client.methods.HttpPost>> modifyRequest) |
SimpleHttpResponse |
CommonsHttpTransport.postParams(URI uri,
com.google.common.collect.Multimap<String,String> params) |
SimpleHttpResponse |
CommonsHttpTransport.put(URI uri,
byte[] content) |
Copyright © 2019 Atlassian. All rights reserved.