BUG 2187 - JMX API for create/delete shard replica
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / RemoveShardReplica.java
1 /*
2  * Copyright (c) 2015 Dell 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.messages;
10
11 import javax.annotation.Nonnull;
12 import com.google.common.base.Preconditions;
13
14 /**
15  * A message sent to the ShardManager to dynamically remove a local shard
16  *  replica available in this node.
17  */
18
19 public class RemoveShardReplica {
20
21     private final String shardName;
22
23     /**
24      * Constructor.
25      *
26      * @param shardName name of the local shard that is to be dynamically removed.
27      */
28
29     public RemoveShardReplica (@Nonnull String shardName){
30         this.shardName = Preconditions.checkNotNull(shardName, "ShardName should not be null");
31     }
32
33     public String getShardName(){
34         return this.shardName;
35     }
36
37     @Override
38     public String toString(){
39         return "RemoveShardReplica[ShardName=" + shardName + "]";
40     }
41 }