fix FollowerInfo @ConstructorProperties for valid ShardStatsMXBean
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / config / yang / config / actor_system_provider / impl / factory / AkkaConfigFactory.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. 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 package org.opendaylight.controller.config.yang.config.actor_system_provider.impl.factory;
9
10 import com.typesafe.config.Config;
11 import com.typesafe.config.ConfigFactory;
12 import org.opendaylight.controller.cluster.common.actor.AkkaConfigurationReader;
13
14 public final class AkkaConfigFactory {
15
16     private static final String CONFIGURATION_NAME = "odl-cluster-data";
17
18     private AkkaConfigFactory() {
19
20     }
21
22     public static Config createAkkaConfig(final AkkaConfigurationReader reader) {
23         return ConfigFactory.load(reader.read()).getConfig(CONFIGURATION_NAME);
24     }
25 }