Fix checkstyle problems not detected by the current version
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / policy / TestOnlyRaftPolicy.java
1 /*
2  * Copyright (c) 2015, 2017 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.datastore.policy;
10
11 import org.opendaylight.controller.cluster.raft.policy.RaftPolicy;
12
13 /**
14  * A RaftPolicy that disables elections so that we can then specify exactly which Shard Replica should be
15  * Leader. Once a Leader is assigned it will behave as per Raft.
16  */
17 public class TestOnlyRaftPolicy implements RaftPolicy {
18     @Override
19     public boolean automaticElectionsEnabled() {
20         return false;
21     }
22
23     @Override
24     public boolean applyModificationToStateBeforeConsensus() {
25         return false;
26     }
27 }