X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=server%2Fcompbio%2Fcontrollers%2FJobController.java;fp=server%2Fcompbio%2Fcontrollers%2FJobController.java;h=f05234ea273e8d270c97e56f71d6959e0b10f24c;hb=986f73f677c2e0cc6bc452d3f2e0cf9b7a4108aa;hp=0a00d9b02d7a872e53031126b4513afec326411b;hpb=db6ea93133979ad97453a89fac0506b69d104ea6;p=proteocache.git diff --git a/server/compbio/controllers/JobController.java b/server/compbio/controllers/JobController.java index 0a00d9b..f05234e 100644 --- a/server/compbio/controllers/JobController.java +++ b/server/compbio/controllers/JobController.java @@ -14,7 +14,6 @@ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; -import compbio.statistic.CassandraRequester; import compbio.beans.DateBean; import compbio.beans.ExecutionTimeBean; import compbio.beans.JobBean; @@ -74,7 +73,7 @@ public class JobController extends BasicController { @RequestMapping(value = "/job/query", method = RequestMethod.GET) public String initFindForm(Map model) { model.put("username", getPrincipalName()); - CassandraRequester cr = new CassandraRequester(); + CassandraReader cr = new CassandraReader(); model.put("value", cr.getExample("jobid")); return "query/JobLog"; }