Bump ODL dependencies to Fluorine (HONEYCOMB-433)
[honeycomb.git] / infra / northbound / bgp-extensions / l3-vpn-v4 / src / main / java / io / fd / honeycomb / northbound / bgp / extension / L3VpnV4WriterFactory.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 static io.fd.honeycomb.northbound.bgp.extension.AbstractBgpExtensionModule.TABLES_IID;
20
21 import com.google.inject.Inject;
22 import com.google.inject.name.Named;
23 import io.fd.honeycomb.translate.util.write.BindingBrokerWriter;
24 import io.fd.honeycomb.translate.write.WriterFactory;
25 import io.fd.honeycomb.translate.write.registry.ModifiableWriterRegistryBuilder;
26 import javax.annotation.Nonnull;
27 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.vpn.ipv4.rev180329.l3vpn.ipv4.routes.VpnIpv4Routes;
29 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
30
31 public class L3VpnV4WriterFactory implements WriterFactory {
32
33     private static final InstanceIdentifier<VpnIpv4Routes> V4_ROUTES_IID = TABLES_IID.child((Class) VpnIpv4Routes.class);
34
35     @Inject
36     @Named("honeycomb-bgp")
37     private DataBroker dataBroker;
38
39     @Override
40     public void init(@Nonnull ModifiableWriterRegistryBuilder registry) {
41         registry.wildcardedSubtreeAdd(new BindingBrokerWriter<>(V4_ROUTES_IID, dataBroker));
42     }
43 }