Merge "BUG-1542 Remove netconf-ssh|tcp features from netconf-all feature"
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / RaftState.java
1 package org.opendaylight.controller.cluster.raft;
2
3 public enum RaftState {
4     Candidate,
5     Follower,
6     Leader
7 }