this.dashboardFactory = dashboardFactory;
}
public Dashboard get(String id) throws APIException, IOException {
DashboardSummaryResponse d = api.path(routes.DashboardsResource().get(id), DashboardSummaryResponse.class)
.onlyMasterNode()
.execute();
return dashboardFactory.fromSummaryResponse(d);
}