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