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