Fix problems with the servlet based codes. The last revision in the branch.
[proteocache.git] / datadb / compbio / cassandra / DataBase.java
index cccf64b..57063ec 100644 (file)
@@ -6,15 +6,21 @@ import java.util.Collections;
 
 public class DataBase {
        private String date;
-       private int total;
+       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;
+       private int totalId;                            // total jobs for current protein sequence
        private String id;
-       private String prot;
+       private String ip;
+       private String prot;                            // protein sequence
        private String jpred;
-       private List<String> subProt;
        private List<Integer> timeRez;
        private List<Integer> timeTotalExec;
+       private JobBean logInfo;
+       private ProteinBean predictions;
 
        public DataBase() {
        }
@@ -29,6 +35,8 @@ public class DataBase {
        }
 
        public String getDate() {
+               if (null == date)
+                       return "1/1/1970";
                return date;
        }
 
@@ -40,6 +48,37 @@ public class DataBase {
                return total;
        }
 
+       public void setTotalOK(int tot) {
+               this.totalOK = tot;
+       }
+
+       public int getTotalOK() {
+               return totalOK;
+       }
+
+       public void setTotalStopped(int tot) {
+               this.totalStopped = tot;
+       }
+
+       public int getTotalStopped() {
+               return totalStopped;
+       }
+
+       public void setTotalError(int tot) {
+               this.totalError = tot;
+       }
+
+       public int getTotalError() {
+               return totalError;
+       }
+
+       public void setTotalTimeOut(int tot) {
+               this.totalTimeOut = tot;
+       }
+
+       public int getTotalTimeOut() {
+               return totalTimeOut;
+       }
        
        public void setTotalJobs(int totalJobs) {
                this.totalJobs = totalJobs;
@@ -80,13 +119,13 @@ public class DataBase {
        public String getId() {
                return id;
        }
-
-       public void setSubProt(List<String> subProt) {
-               this.subProt = subProt;
+       
+       public void setIp(String ip) {
+               this.ip = ip;
        }
 
-       public List<String> getSubProt() {
-               return subProt;
+       public String getIp() {
+               return ip;
        }
 
        public void setTimeRez(List<Integer> timeRez) {
@@ -104,5 +143,21 @@ public class DataBase {
        public List<Integer> getTimeTotalExec() {
                return timeTotalExec;
        }
+       
+       public void setLogInfo(JobBean logInfo){
+               this.logInfo = logInfo;
+       }
+       
+       public JobBean getLogInfo() {
+               return logInfo;
+       }
+       
+       public void setPredictions(ProteinBean predictions){
+               this.predictions = predictions;
+       }
+       
+       public ProteinBean getPredictions() {
+               return predictions;
+       }
 
 }