This commit is contained in:
Edward Capriolo
2015-02-15 23:24:18 -05:00
parent a1c241b780
commit 7ce0700798
10 changed files with 63 additions and 26 deletions

View File

@ -0,0 +1,10 @@
package com.google.code.gossip.event;
public enum GossipState {
UP("up"), DOWN("down");
private String state;
private GossipState(String state){
this.state = state;
}
}