Honeynode test tool
[transportpce.git] / tests / honeynode / restconf / src / main / java / io / fd / honeycomb / northbound / restconf / RestconfProvider.java
1 /*
2  * Copyright (c) 2016, 2017 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 io.fd.honeycomb.data.init.ShutdownHandler;
24
25 import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
26 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
27 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
28 import org.opendaylight.controller.md.sal.dom.broker.impl.DOMNotificationRouter;
29 import org.opendaylight.controller.sal.core.api.model.SchemaService;
30 import org.opendaylight.netconf.sal.rest.api.RestConnector;
31 import org.opendaylight.netconf.sal.restconf.impl.RestconfProviderImpl;
32 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressBuilder;
33 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber;
34
35 final class RestconfProvider extends ProviderTrait<RestConnector> {
36
37     @Inject
38     private RestconfConfiguration cfg;
39     @Inject
40 //    @Named(HONEYCOMB_CONFIG)
41     //Modified in order to connect TPCE to device config datastore
42     @Named("device-databroker")
43     private DOMDataBroker domDataBroker;
44     @Inject
45     private SchemaService schemaService;
46     @Inject
47     private DOMRpcService rpcService;
48     @Inject
49     private DOMNotificationRouter notificationService;
50     @Inject
51     private ShutdownHandler shutdownHandler;
52     @Inject
53     private DOMMountPointService mountPointService;
54
55     @Override
56     protected RestconfProviderImpl create() {
57         final RestconfProviderImpl instance = new RestconfProviderImpl(domDataBroker, schemaService, rpcService,
58             notificationService, mountPointService,
59             IpAddressBuilder.getDefaultInstance(cfg.restconfWebsocketAddress.get()),
60             new PortNumber(cfg.restconfWebsocketPort.get()));
61
62         // Required to properly initialize restconf (broker, schema ctx, etc.).
63         // Without that restconf would fail with 503 (service not available).
64         instance.start();
65
66         shutdownHandler.register(instance.getClass().getCanonicalName(), instance);
67         return instance;
68     }
69 }