Executes a query on the core's assets. @param client client object that makes requests to the core @return a collection 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.Malforme
(Client client)
| 161 | * @throws JSONException This exception is raised due to malformed json requests or responses. |
| 162 | */ |
| 163 | public Items execute(Client client) throws ChainException { |
| 164 | Items items = new Items(); |
| 165 | items.setClient(client); |
| 166 | items.setNext(this.next); |
| 167 | return items.getPage(); |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | /** |