Requests a page of accounts based on an underlying query. @return a page of accounts objects @throws APIException This exception is raised if the api returns errors while retrieving the accounts. @throws BadURLException This exception wraps java.net.MalformedURLException. @throws ConnectivityExcepti
()
| 109 | * @throws JSONException This exception is raised due to malformed json requests or responses. |
| 110 | */ |
| 111 | public Items getPage() throws ChainException { |
| 112 | Items items = this.client.request("list-accounts", this.next, Items.class); |
| 113 | items.setClient(this.client); |
| 114 | return items; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | /** |