*/
public void delete(String appId) throws ApplicationNotFoundException, IOException, UnAuthorizedAccessTokenException {
HttpResponse response = restClient.execute(HttpMethod.DELETE, config.resolveURL("apps/" + appId),
config.getAccessToken(), HttpURLConnection.HTTP_NOT_FOUND);
if (response.getResponseCode() == HttpURLConnection.HTTP_NOT_FOUND) {
throw new ApplicationNotFoundException(appId);
}
}