fix data report, protein report
[proteocache.git] / datadb / compbio / cassandra / DataBase.java
1 package compbio.cassandra;
2
3 import java.util.List;
4 import java.util.ArrayList;
5 import java.util.Collections;
6
7 public class DataBase {
8         private String date;
9         private int total;
10         private int totalJobs;
11         private int totalId;
12         private String id;
13         private String prot;
14         private String jpred;
15         private List<String> subProt;
16         private List<Integer> timeRez;
17         private List<Integer> timeTotalExec;
18
19         public DataBase() {
20         }
21
22         public DataBase(String dat, int total) {
23                 this.date = dat;
24                 this.total = total;
25         }
26
27         public void setDate(String dat) {
28                 this.date = dat;
29         }
30
31         public String getDate() {
32                 return date;
33         }
34
35         public void setTotal(int tot) {
36                 this.total = tot;
37         }
38
39         public int getTotal() {
40                 return total;
41         }
42
43         
44         public void setTotalJobs(int totalJobs) {
45                 this.totalJobs = totalJobs;
46         }
47
48         public int getTotalJobs() {
49                 return totalJobs;
50         }
51
52         public void setTotalId(int totId) {
53                 this.totalId = totId;
54         }
55
56         public int getTotalId() {
57                 return totalId;
58         }
59
60         public void setProt(String prot) {
61                 this.prot = prot;
62         }
63
64         public String getProt() {
65                 return prot;
66         }
67
68         public void setJpred(String jpred) {
69                 this.jpred = jpred;
70         }
71
72         public String getJpred() {
73                 return jpred;
74         }
75
76         public void setId(String id) {
77                 this.id = id;
78         }
79
80         public String getId() {
81                 return id;
82         }
83
84         public void setSubProt(List<String> subProt) {
85                 this.subProt = subProt;
86         }
87
88         public List<String> getSubProt() {
89                 return subProt;
90         }
91
92         public void setTimeRez(List<Integer> timeRez) {
93                 this.timeRez = timeRez;
94         }
95
96         public List<Integer> getTimeRez() {
97                 return timeRez;
98         }
99         
100         public void setTimeTotalExec(List<Integer> timeTotalExec) {
101                 this.timeTotalExec = timeTotalExec;
102         }
103
104         public List<Integer> getTimeTotalExec() {
105                 return timeTotalExec;
106         }
107
108 }