X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=datadb%2Fcompbio%2Fcassandra%2FDataBase.java;h=e741b390dba82e0e0bb5b33901be3f557f279db3;hb=0349dbf0d18575d9d35758bc9ced99af202766ce;hp=7c3cc82c50182e6e2b28de058da017a03c10464d;hpb=e8b88c0c8e432f8bc1aefdbd81df81e9ef706242;p=proteocache.git diff --git a/datadb/compbio/cassandra/DataBase.java b/datadb/compbio/cassandra/DataBase.java index 7c3cc82..e741b39 100644 --- a/datadb/compbio/cassandra/DataBase.java +++ b/datadb/compbio/cassandra/DataBase.java @@ -9,16 +9,16 @@ import compbio.beans.ProteinBean; public class DataBase { private String date; - private int total; // total number of jobs - private int totalOK; // number of jobs with execution status OK - private int totalStopped; // number of jobs with execution status STOPPED - private int totalError; // number of jobs with execution status Jpred ERROR - private int totalTimeOut; // number of jobs with execution status TIMEOUT + private int total; // total number of jobs + private int totalOK; // number of jobs with execution status OK + private int totalStopped; // number of jobs with execution status STOPPED + private int totalError; // number of jobs with execution status Jpred ERROR + private int totalTimeOut; // number of jobs with execution status TIMEOUT private int totalJobs; - private int totalId; // total jobs for current protein sequence + private int totalId; // total jobs for current protein sequence private String id; private String ip; - private String prot; // protein sequence + private String prot; // protein sequence private String jpred; private List timeRez; private List timeTotalExec; @@ -82,7 +82,7 @@ public class DataBase { public int getTotalTimeOut() { return totalTimeOut; } - + public void setTotalJobs(int totalJobs) { this.totalJobs = totalJobs; } @@ -122,7 +122,7 @@ public class DataBase { public String getId() { return id; } - + public void setIp(String ip) { this.ip = ip; } @@ -138,7 +138,7 @@ public class DataBase { public List getTimeRez() { return timeRez; } - + public void setTimeTotalExec(List timeTotalExec) { this.timeTotalExec = timeTotalExec; } @@ -146,19 +146,19 @@ public class DataBase { public List getTimeTotalExec() { return timeTotalExec; } - - public void setLogInfo(JobBean logInfo){ + + public void setLogInfo(JobBean logInfo) { this.logInfo = logInfo; } - + public JobBean getLogInfo() { return logInfo; } - - public void setPredictions(ProteinBean predictions){ + + public void setPredictions(ProteinBean predictions) { this.predictions = predictions; } - + public ProteinBean getPredictions() { return predictions; }