X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=webservices%2Fcompbio%2Fnosql%2Fcassandra%2FDataBase.java;fp=webservices%2Fcompbio%2Fnosql%2Fcassandra%2FDataBase.java;h=036a48d03d12e872eaf7e52f55718c76a2bee1d5;hb=1b3f78859f281e8e3142b543a384e5cfbe366839;hp=0000000000000000000000000000000000000000;hpb=8b45c19de3f4e652033186bf6b9dc9b3e9205a64;p=jabaws.git diff --git a/webservices/compbio/nosql/cassandra/DataBase.java b/webservices/compbio/nosql/cassandra/DataBase.java new file mode 100644 index 0000000..036a48d --- /dev/null +++ b/webservices/compbio/nosql/cassandra/DataBase.java @@ -0,0 +1,76 @@ +package combio.cassandra; + +import java.util.List; + +public class DataBase { + String date; + int total; + String id; + String prot; + String jpred; + List subProt; + List timeRez; + + + public DataBase() {} + + public DataBase(String dat, int total) { + this.date = dat; + this.total = total; + } + + public void setDate(String dat) { + this.date = dat; + } + + public String getDate() { + return date; + } + + public void setTotal(int tot) { + this.total = tot; + } + public int getTotal() { + return total; + } + + public void setProt(String prot) { + this.prot = prot; + } + + public String getProt() { + return prot; + } + + public void setJpred(String jpred) { + this.jpred = jpred; + } + + public String getJpred() { + return jpred; + } + + public void setId(String id) { + this.id = id; + } + + public String getId() { + return id; + } + + public void setSubProt(List subProt) { + this.subProt = subProt; + } + + public List getSubProt() { + return subProt; + } + + public void setTimeRez(List timeRez) { + this.timeRez = timeRez; + } + + public List getTimeRez() { + return timeRez; + } +}