fix query log info, jobs by counter
[proteocache.git] / datadb / compbio / cassandra / DataBase.java
index bdb1a8c..91eabf0 100644 (file)
@@ -7,12 +7,15 @@ import java.util.Collections;
 public class DataBase {
        private String date;
        private int total;
+       private int totalJobs;
        private int totalId;
        private String id;
        private String prot;
        private String jpred;
        private List<String> subProt;
        private List<Integer> timeRez;
+       private List<Integer> timeTotalExec;
+       private StructureJobLog logInfo;
 
        public DataBase() {
        }
@@ -38,6 +41,15 @@ public class DataBase {
                return total;
        }
 
+       
+       public void setTotalJobs(int totalJobs) {
+               this.totalJobs = totalJobs;
+       }
+
+       public int getTotalJobs() {
+               return totalJobs;
+       }
+
        public void setTotalId(int totId) {
                this.totalId = totId;
        }
@@ -85,5 +97,21 @@ public class DataBase {
        public List<Integer> getTimeRez() {
                return timeRez;
        }
+       
+       public void setTimeTotalExec(List<Integer> timeTotalExec) {
+               this.timeTotalExec = timeTotalExec;
+       }
+
+       public List<Integer> getTimeTotalExec() {
+               return timeTotalExec;
+       }
+       
+       public void setLogInfo(StructureJobLog logInfo){
+               this.logInfo = logInfo;
+       }
+       
+       public StructureJobLog getLogInfo() {
+               return logInfo;
+       }
 
 }