Requests a page of key objects from the core. @return a collection of key objects @throws APIException This exception is raised if the api returns errors while retrieving the keys. @throws BadURLException This exception wraps java.net.MalformedURLException. @throws ConnectivityException This excepti
()
| 99 | * @throws JSONException This exception is raised due to malformed json requests or responses. |
| 100 | */ |
| 101 | @Override |
| 102 | public Items getPage() throws ChainException { |
| 103 | Items items = this.client.request("mockhsm/list-keys", this.next, Items.class); |
| 104 | items.setClient(this.client); |
| 105 | return items; |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | public static class QueryBuilder { |