fix ServiceHandler SpotBugs false positives
[transportpce.git] / tests / honeynode / 2.2.1 / netconf / src / main / java / io / fd / honeycomb / northbound / netconf / NetconfNotificationsReaderFactoryProvider.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 static org.opendaylight.mdsal.common.api.LogicalDatastoreType.OPERATIONAL;
20
21 import com.google.inject.Inject;
22 import com.google.inject.name.Named;
23 import io.fd.honeycomb.binding.init.ProviderTrait;
24 import io.fd.honeycomb.translate.read.ReaderFactory;
25 import io.fd.honeycomb.translate.read.registry.ModifiableReaderRegistryBuilder;
26 import io.fd.honeycomb.translate.util.read.BindingBrokerReader;
27 import javax.annotation.Nonnull;
28 import org.opendaylight.mdsal.binding.api.DataBroker;
29 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netmod.notification.rev080714.Netconf;
30 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netmod.notification.rev080714.NetconfBuilder;
31 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
32
33 public final class NetconfNotificationsReaderFactoryProvider extends ProviderTrait<ReaderFactory> {
34
35     @Inject
36     @Named(NetconfModule.HONEYCOMB_NETCONF)
37     private DataBroker netconfDataBroker;
38
39     @Override
40     protected ReaderFactory create() {
41         return new NotificationReaderFactory(netconfDataBroker);
42     }
43
44     private static final class NotificationReaderFactory implements ReaderFactory {
45         private final DataBroker netconfDataBroker;
46
47         NotificationReaderFactory(final DataBroker netconfDataBroker) {
48             this.netconfDataBroker = netconfDataBroker;
49         }
50
51         @Override
52         public void init(@Nonnull final ModifiableReaderRegistryBuilder registry) {
53             registry.add(
54                     new BindingBrokerReader<>(InstanceIdentifier.create(Netconf.class), netconfDataBroker, OPERATIONAL,
55                             NetconfBuilder.class));
56         }
57
58     }
59 }