fix data report, protein report
[proteocache.git] / datadb / compbio / cassandra / DataBase.java
index bdb1a8c..cccf64b 100644 (file)
@@ -7,12 +7,14 @@ 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;
 
        public DataBase() {
        }
@@ -38,6 +40,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 +96,13 @@ public class DataBase {
        public List<Integer> getTimeRez() {
                return timeRez;
        }
+       
+       public void setTimeTotalExec(List<Integer> timeTotalExec) {
+               this.timeTotalExec = timeTotalExec;
+       }
+
+       public List<Integer> getTimeTotalExec() {
+               return timeTotalExec;
+       }
 
 }