0745475f706831adb44029722f353d6f13ca8fcd
[honeycomb.git] / vpp-common / naming-context-impl / src / main / java / io / fd / honeycomb / vpp / context / ContextsReaderFactory.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 package io.fd.honeycomb.vpp.context;
17
18 import io.fd.honeycomb.translate.read.ReaderFactory;
19 import io.fd.honeycomb.translate.read.registry.ModifiableReaderRegistryBuilder;
20 import io.fd.honeycomb.translate.util.read.BindingBrokerReader;
21 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
22 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
23 import org.opendaylight.yang.gen.v1.urn.honeycomb.params.xml.ns.yang.naming.context.rev160513.Contexts;
24 import org.opendaylight.yang.gen.v1.urn.honeycomb.params.xml.ns.yang.naming.context.rev160513.ContextsBuilder;
25 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
26
27 /**
28  * {@link ReaderFactory} initiating reader providing data from context data store.
29  * Making them available over RESTCONF/NETCONF.
30  */
31 public final class ContextsReaderFactory implements ReaderFactory {
32
33     private final DataBroker contextBindingBrokerDependency;
34
35     public ContextsReaderFactory(final DataBroker contextBindingBrokerDependency) {
36         this.contextBindingBrokerDependency = contextBindingBrokerDependency;
37     }
38
39     @Override
40     public void init(final ModifiableReaderRegistryBuilder registry) {
41         registry.add(new BindingBrokerReader<>(InstanceIdentifier.create(Contexts.class),
42                 contextBindingBrokerDependency,
43                 LogicalDatastoreType.OPERATIONAL, ContextsBuilder.class));
44     }
45 }