BUG 2185 : Add JMX API to change the state of a Shard
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / base / messages / SwitchBehavior.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.cluster.raft.base.messages;
10
11 import org.opendaylight.controller.cluster.raft.RaftState;
12
13 public class SwitchBehavior {
14     private final RaftState newState;
15     private final long newTerm;
16
17     public SwitchBehavior(RaftState newState, long newTerm) {
18         this.newState = newState;
19         this.newTerm = newTerm;
20     }
21
22     public RaftState getNewState() {
23         return newState;
24     }
25
26     public long getNewTerm() {
27         return newTerm;
28     }
29
30     @Override
31     public String toString() {
32         final StringBuilder sb = new StringBuilder("SwitchBehavior{");
33         sb.append("newState=").append(newState);
34         sb.append(", newTerm=").append(newTerm);
35         sb.append('}');
36         return sb.toString();
37     }
38 }