X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=lib%2Fjava%2Fdolda%2Fdolcon%2FHub.java;fp=lib%2Fjava%2Fdolda%2Fdolcon%2FHub.java;h=125f17269548c95f158a85182c1225e4d87fedae;hb=e90ca845da9e7104c8c1cf88964bdc1880561e44;hp=0000000000000000000000000000000000000000;hpb=92719bd69eccc35cf4aec15d0fc98049cfd950cc;p=doldaconnect.git diff --git a/lib/java/dolda/dolcon/Hub.java b/lib/java/dolda/dolcon/Hub.java new file mode 100644 index 0000000..125f172 --- /dev/null +++ b/lib/java/dolda/dolcon/Hub.java @@ -0,0 +1,35 @@ +package dolda.dolcon; + +public class Hub { + int id, numpeers; + String fnet, name, gid; + String state; + + public Hub(int id) { + this.id = id; + } + + public int getId() { + return(id); + } + + public String getGid() { + return(gid); + } + + public String getFnet() { + return(fnet); + } + + public String getName() { + return(name); + } + + public int getNumPeers() { + return(numpeers); + } + + public String getState() { + return(state); + } +}