Serialization/Deserialization and a host of other fixes
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / shardstrategy / ModuleShardStrategy.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.shardstrategy;
10
11 import org.opendaylight.controller.cluster.datastore.Configuration;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
13
14 public class ModuleShardStrategy implements ShardStrategy {
15
16     public static final String NAME = "module";
17
18     private final String moduleName;
19     private final Configuration configuration;
20
21     public ModuleShardStrategy(String moduleName, Configuration configuration){
22         this.moduleName = moduleName;
23
24         this.configuration = configuration;
25     }
26
27     @Override public String findShard(YangInstanceIdentifier path) {
28         return configuration.getShardNamesFromModuleName(moduleName).get(0);
29     }
30 }