HoneyNode Java 11 support for 121 devices
[transportpce.git] / tests / honeynode / 1.2.1 / restconf / src / main / java / io / fd / honeycomb / northbound / restconf / BrokerFacadeProvider.java
1 /*
2  * Copyright (c) 2018 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.northbound.restconf;
18
19 import com.google.inject.Inject;
20 import com.google.inject.name.Named;
21
22 import io.fd.honeycomb.binding.init.ProviderTrait;
23 import org.opendaylight.mdsal.dom.api.DOMDataBroker;
24 import org.opendaylight.mdsal.dom.api.DOMRpcService;
25 import org.opendaylight.mdsal.dom.broker.DOMNotificationRouter;
26 import org.opendaylight.netconf.sal.restconf.impl.BrokerFacade;
27 import org.opendaylight.netconf.sal.restconf.impl.ControllerContext;
28
29
30
31 final class BrokerFacadeProvider extends ProviderTrait<BrokerFacade> {
32
33     @Inject
34     // @Named(ConfigAndOperationalPipelineModule.HONEYCOMB_CONFIG)
35     // Modified in order to connect TPCE to device config datastore
36     @Named("device-databroker")
37     private DOMDataBroker domDataBroker;
38     @Inject
39     private DOMRpcService rpcService;
40     @Inject
41     private DOMNotificationRouter notificationService;
42     @Inject
43     private ControllerContext controllerContext;
44
45     @Override
46     protected BrokerFacade create() {
47         return BrokerFacade.newInstance(rpcService, domDataBroker, notificationService, controllerContext);
48     }
49 }