| Package | Description |
|---|---|
| com.atlassian.marketplace.client |
Top-level interfaces and value classes for the Atlassian Marketplace API.
|
| com.atlassian.marketplace.client.api |
Interfaces and immutable value classes used in the Atlassian Marketplace API.
|
| com.atlassian.marketplace.client.impl |
Internal implementation of Marketplace client APIs.
|
| Modifier and Type | Method and Description |
|---|---|
<T> Page<T> |
MarketplaceClient.getMore(PageReference<T> ref)
Queries a page of a result set from a previous query, for any resource that provides paginated
results (such as
Addons.find(com.atlassian.marketplace.client.api.AddonQuery)). |
| Modifier and Type | Method and Description |
|---|---|
abstract com.atlassian.fugue.Option<PageReference<T>> |
Page.getNext()
If there are other items after this subset in the full result set, returns a
PageReference
allowing you to query the next page; otherwise returns Option.none(). |
abstract com.atlassian.fugue.Option<PageReference<T>> |
Page.getPrevious()
If there are other items before this subset in the full result set, returns a
PageReference
allowing you to query the previous page; otherwise returns Option.none(). |
abstract com.atlassian.fugue.Option<PageReference<T>> |
Page.getReference()
Returns a reference to the address of this query page on the server allowing it to be requeried
in the future, or
Option.none() if it does not exist on the server. |
| Modifier and Type | Method and Description |
|---|---|
abstract Page<T> |
PageReader.readPage(PageReference<T> ref,
InputStream in) |
| Modifier and Type | Method and Description |
|---|---|
<T> Page<T> |
DefaultMarketplaceClient.getMore(PageReference<T> ref) |
Copyright © 2019 Atlassian. All rights reserved.