85caf6621322195af15e75ee0c039b2488467114
[transportpce.git] / tests / honeynode / 2.2.1 / 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 io.fd.honeycomb.binding.init.ProviderTrait;
21 import io.fd.honeycomb.data.init.ShutdownHandler;
22 import org.opendaylight.netconf.sal.rest.api.RestConnector;
23 import org.opendaylight.netconf.sal.restconf.impl.RestconfProviderImpl;
24 import org.opendaylight.netconf.sal.restconf.impl.StatisticsRestconfServiceWrapper;
25 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressBuilder;
26 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber;
27
28 final class RestconfProvider extends ProviderTrait<RestConnector> {
29
30     @Inject
31     private RestconfConfiguration cfg;
32     @Inject
33     private ShutdownHandler shutdownHandler;
34     @Inject
35     private StatisticsRestconfServiceWrapper statsServiceWrapper;
36
37     @Override
38     protected RestconfProviderImpl create() {
39         final RestconfProviderImpl instance = new RestconfProviderImpl(statsServiceWrapper,
40                 IpAddressBuilder.getDefaultInstance(cfg.restconfWebsocketAddress.get()),
41                 new PortNumber(cfg.restconfWebsocketPort.get()));
42         // Required to properly initialize restconf (broker, schema ctx, etc.).
43         // Without that restconf would fail with 503 (service not available).
44         instance.start();
45
46         shutdownHandler.register(instance.getClass().getCanonicalName(), instance);
47         return instance;
48     }
49 }