Executes a query on the core's accounts. @param client client object that makes requests to the core @return a collection of account objects @throws APIException This exception is raised if the api returns errors while retrieving the accounts. @throws BadURLException This exception wraps java.net.Ma
(Client client)
| 132 | * @throws JSONException This exception is raised due to malformed json requests or responses. |
| 133 | */ |
| 134 | public Items execute(Client client) throws ChainException { |
| 135 | Items items = new Items(); |
| 136 | items.setClient(client); |
| 137 | items.setNext(this.next); |
| 138 | return items.getPage(); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | /** |