Add Honeynode emulator for device221
[transportpce.git] / tests / honeynode / 2.2.1 / netconf / src / main / java / io / fd / honeycomb / northbound / netconf / NetconfMdsalMapperProvider.java
1 /*
2  * Copyright (c) 2016 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.netconf;
18
19 import com.google.inject.Inject;
20 import com.google.inject.name.Named;
21
22 import io.fd.honeycomb.binding.init.ProviderTrait;
23
24 import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
25 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
26 import org.opendaylight.controller.sal.core.api.model.SchemaService;
27 import org.opendaylight.mdsal.binding.generator.impl.ModuleInfoBackedContext;
28 import org.opendaylight.netconf.mapping.api.NetconfOperationServiceFactory;
29 import org.opendaylight.netconf.mapping.api.NetconfOperationServiceFactoryListener;
30 import org.opendaylight.netconf.mdsal.connector.MdsalNetconfOperationServiceFactory;
31
32 public final class NetconfMdsalMapperProvider extends ProviderTrait<NetconfOperationServiceFactory> {
33
34     @Inject
35     private SchemaService schemaService;
36     @Inject
37     private NetconfOperationServiceFactoryListener aggregator;
38     @Inject
39     private ModuleInfoBackedContext moduleInfoBackedContext;
40     @Inject
41 //    @Named(HONEYCOMB_CONFIG)
42     //Modified in order to connect TPCE to device config datastore
43     @Named("device-databroker")
44     private DOMDataBroker domBroker;
45     @Inject
46     private NetconfOperationServiceFactoryListener netconfOperationServiceFactoryListener;
47     @Inject
48     private DOMRpcService rpcService;
49
50     @Override
51     protected MdsalNetconfOperationServiceFactory create() {
52         MdsalNetconfOperationServiceFactory mdsalNetconfOperationServiceFactory =
53                 new MdsalNetconfOperationServiceFactory(schemaService, moduleInfoBackedContext, netconfOperationServiceFactoryListener, domBroker, rpcService);
54         return mdsalNetconfOperationServiceFactory;
55     }
56 }