fix query log info, jobs by counter
[proteocache.git] / datadb / compbio / cassandra / DataBase.java
index cccf64b..91eabf0 100644 (file)
@@ -15,6 +15,7 @@ public class DataBase {
        private List<String> subProt;
        private List<Integer> timeRez;
        private List<Integer> timeTotalExec;
+       private StructureJobLog logInfo;
 
        public DataBase() {
        }
@@ -104,5 +105,13 @@ public class DataBase {
        public List<Integer> getTimeTotalExec() {
                return timeTotalExec;
        }
+       
+       public void setLogInfo(StructureJobLog logInfo){
+               this.logInfo = logInfo;
+       }
+       
+       public StructureJobLog getLogInfo() {
+               return logInfo;
+       }
 
 }