}
@GET
@Produces({ XML, JSON })
public JobDataList getActiveJobs() throws OpsException {
JobQuery jobQuery = JobQuery.build(getProject(), filterTarget);
List<JobData> jobList = jobRegistry.listRecentJobs(jobQuery);
JobDataList jobs = JobDataList.create();
jobs.jobs = Lists.newArrayList();
for (JobData jobData : jobList) {