Requests a page of assets based on an underlying query. @return a page of asset objects @throws APIException This exception is raised if the api returns errors while retrieving the assets. @throws BadURLException This exception wraps java.net.MalformedURLException. @throws ConnectivityException This
()
| 137 | * @throws JSONException This exception is raised due to malformed json requests or responses. |
| 138 | */ |
| 139 | @Override |
| 140 | public Items getPage() throws ChainException { |
| 141 | Items items = this.client.request("list-assets", this.next, Items.class); |
| 142 | items.setClient(this.client); |
| 143 | return items; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | /** |