return appsRep.getApplications();
}
private String parseApplicationId(ClientResponse applicationResponse) {
String body = applicationResponse.getEntity(String.class);
ApplicationRepresentation representation = JSONBase.fromJSON(body, ApplicationRepresentation.class);
return representation.getId();
}