9596979899100101102
* @param id * the ID of the workflow. * @return the list of workflow steps. */ public List<WorkflowStepRestRep> getSteps(URI id) { StepList response = client.get(StepList.class, getIdUrl() + "/steps", id); return defaultList(response.getSteps()); }
100101102103104105106107