016a30a41461c8fcfac2374f70a9bdd3f4219820
[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 totalId;
11         private String id;
12         private String prot;
13         private String jpred;
14         private List<String> subProt;
15         private List<Integer> timeRez;
16         private List<Integer> timeTotalExec;
17
18         public DataBase() {
19         }
20
21         public DataBase(String dat, int total) {
22                 this.date = dat;
23                 this.total = total;
24         }
25
26         public void setDate(String dat) {
27                 this.date = dat;
28         }
29
30         public String getDate() {
31                 return date;
32         }
33
34         public void setTotal(int tot) {
35                 this.total = tot;
36         }
37
38         public int getTotal() {
39                 return total;
40         }
41
42         public void setTotalId(int totId) {
43                 this.totalId = totId;
44         }
45
46         public int getTotalId() {
47                 return totalId;
48         }
49
50         public void setProt(String prot) {
51                 this.prot = prot;
52         }
53
54         public String getProt() {
55                 return prot;
56         }
57
58         public void setJpred(String jpred) {
59                 this.jpred = jpred;
60         }
61
62         public String getJpred() {
63                 return jpred;
64         }
65
66         public void setId(String id) {
67                 this.id = id;
68         }
69
70         public String getId() {
71                 return id;
72         }
73
74         public void setSubProt(List<String> subProt) {
75                 this.subProt = subProt;
76         }
77
78         public List<String> getSubProt() {
79                 return subProt;
80         }
81
82         public void setTimeRez(List<Integer> timeRez) {
83                 this.timeRez = timeRez;
84         }
85
86         public List<Integer> getTimeRez() {
87                 return timeRez;
88         }
89         
90         public void setTimeTotalExec(List<Integer> timeTotalExec) {
91                 this.timeTotalExec = timeTotalExec;
92         }
93
94         public List<Integer> getTimeTotalExec() {
95                 return timeTotalExec;
96         }
97
98 }