@Produces(JSON_UTF8)
@Path("courses/{id}/schedule")
@FenixAPIPublic
public FenixSchedule scheduleCoursesByOid(@PathParam("id") String oid) {
ExecutionCourse executionCourse = getDomainObject(oid, ExecutionCourse.class);
return new FenixSchedule(executionCourse);
}