X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=server%2Fcompbio%2Fcontrollers%2FJobController.java;h=f05234ea273e8d270c97e56f71d6959e0b10f24c;hb=d1048dc77b419ac536dee9ce6fa3113613172b9c;hp=0a00d9b02d7a872e53031126b4513afec326411b;hpb=bdb2d648d4b27a0ff5d1c264ef52c27e27f59984;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"; }