blob: bea592480c12ce6c6ff2b9caa8c383c76461d08d [file] [log] [blame]
package com.google.code.gossip.event;
public enum GossipState {
UP("up"), DOWN("down");
private final String state;
private GossipState(String state){
this.state = state;
}
}