3b3bc83f48138529de7e242867a64e7df6705f84
[transportpce.git] / tests / honeynode / 2.2.1 / minimal-distribution-core / src / main / java / io / fd / honeycomb / infra / distro / data / LegacyBindingDataBrokerProvider.java
1 /*
2  * Copyright (c) 2019 Cisco and/or its affiliates.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package io.fd.honeycomb.infra.distro.data;
18
19 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
20 import org.opendaylight.controller.md.sal.binding.impl.BindingDOMDataBrokerAdapter;
21 import org.opendaylight.controller.md.sal.binding.impl.BindingToNormalizedNodeCodec;
22 import org.opendaylight.controller.sal.core.compat.LegacyDOMDataBrokerAdapter;
23 import org.opendaylight.mdsal.binding.generator.impl.ModuleInfoBackedContext;
24 import org.opendaylight.mdsal.dom.api.DOMDataBroker;
25
26 import com.google.inject.Inject;
27
28 import io.fd.honeycomb.binding.init.ProviderTrait;
29
30 /**
31  * Provider for legacy {@linkDataBroker} used in BGP Module.
32  */
33 public class LegacyBindingDataBrokerProvider extends ProviderTrait<DataBroker> {
34     @Inject
35     private DOMDataBroker domDataBroker;
36     @Inject
37     private BindingToNormalizedNodeCodec mappingService;
38     @Inject
39     private ModuleInfoBackedContext mibCtx;
40
41     @Override
42     protected BindingDOMDataBrokerAdapter create() {
43         return new BindingDOMDataBrokerAdapter(new LegacyDOMDataBrokerAdapter(domDataBroker), mappingService);
44     }
45
46 }