3aff26ae87f2acc653684dd80db589a51c988f27
[transportpce.git] / tests / honeynode / 1.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 org.opendaylight.mdsal.dom.api.DOMDataBroker;
20 import org.opendaylight.mdsal.dom.api.DOMRpcService;
21 import org.opendaylight.mdsal.dom.api.DOMSchemaService;
22 import org.opendaylight.netconf.mapping.api.NetconfOperationServiceFactory;
23 import org.opendaylight.netconf.mapping.api.NetconfOperationServiceFactoryListener;
24 import org.opendaylight.netconf.mdsal.connector.MdsalNetconfOperationServiceFactory;
25
26 import com.google.inject.Inject;
27 import com.google.inject.name.Named;
28
29 import io.fd.honeycomb.binding.init.ProviderTrait;
30
31 public final class NetconfMdsalMapperProvider extends ProviderTrait<NetconfOperationServiceFactory> {
32
33     @Inject
34     private DOMSchemaService schemaService;
35     @Inject
36     private NetconfOperationServiceFactoryListener aggregator;
37     @Inject
38     // @Named(HONEYCOMB_CONFIG)
39     // Modified in order to connect TPCE to device config datastore
40     @Named("device-databroker")
41     private DOMDataBroker domBroker;
42     @Inject
43     private NetconfOperationServiceFactoryListener netconfOperationServiceFactoryListener;
44     @Inject
45     private DOMRpcService rpcService;
46
47     @Override
48     protected MdsalNetconfOperationServiceFactory create() {
49         return new MdsalNetconfOperationServiceFactory(schemaService, netconfOperationServiceFactoryListener, domBroker,
50                 rpcService);
51     }
52 }