Merge "Bug 1144: Fixed mising DataChangeEvents for leaf listeners."
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / FindPrimary.java
1 /*
2  * Copyright (c) 2014 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.messages;
10
11 import com.google.common.base.Preconditions;
12
13 /**
14  * The FindPrimary message is used to locate the primary of any given shard
15  *
16  * TODO : Make this serializable
17  */
18 public class FindPrimary{
19     private final String shardName;
20
21     public FindPrimary(String shardName){
22
23         Preconditions.checkNotNull(shardName, "shardName should not be null");
24
25         this.shardName = shardName;
26     }
27
28     public String getShardName() {
29         return shardName;
30     }
31 }