7f4aaba27f78f842646c5ec1a62b04c441652e67
[honeycomb.git] / infra / northbound / bgp-extensions / linkstate / src / main / java / io / fd / honeycomb / northbound / bgp / extension / LinkstateWriterFactory.java
1 /*
2  * Copyright (c) 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.bgp.extension;
18
19 import com.google.inject.Inject;
20 import com.google.inject.name.Named;
21 import io.fd.honeycomb.translate.util.write.BindingBrokerWriter;
22 import io.fd.honeycomb.translate.write.WriterFactory;
23 import io.fd.honeycomb.translate.write.registry.ModifiableWriterRegistryBuilder;
24 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev150210.linkstate.routes.LinkstateRoutes;
26 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
27
28 import javax.annotation.Nonnull;
29
30 import static io.fd.honeycomb.northbound.bgp.extension.AbstractBgpExtensionModule.TABLES_IID;
31
32 public class LinkstateWriterFactory implements WriterFactory {
33
34     private static final InstanceIdentifier<LinkstateRoutes> LINKSTATE_ROUTES_IID = TABLES_IID.child((Class) LinkstateRoutes.class);
35
36     @Inject
37     @Named("honeycomb-bgp")
38     private DataBroker dataBroker;
39
40     @Override
41     public void init(@Nonnull ModifiableWriterRegistryBuilder registry) {
42         registry.wildcardedSubtreeAdd(new BindingBrokerWriter<>(LINKSTATE_ROUTES_IID, dataBroker));
43     }
44 }