Provide Add Path support for all AFI/SAFI
[bgpcep.git] / bgp / l3vpn / src / main / java / org / opendaylight / protocol / bgp / l3vpn / ipv6 / VpnIpv6NlriParser.java
1 /*
2  * Copyright (c) 2016 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.protocol.bgp.l3vpn.ipv6;
9
10 import java.util.List;
11 import org.opendaylight.protocol.bgp.l3vpn.AbstractVpnNlriParser;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev171207.destination.DestinationType;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev171207.update.attributes.mp.reach.nlri.AdvertizedRoutes;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev171207.update.attributes.mp.reach.nlri.AdvertizedRoutesBuilder;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev171207.update.attributes.mp.unreach.nlri.WithdrawnRoutes;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev171207.update.attributes.mp.unreach.nlri.WithdrawnRoutesBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.vpn.ipv6.rev180329.L3vpnIpv6Destination;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.vpn.ipv6.rev180329.l3vpn.ipv6.destination.VpnIpv6DestinationBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.vpn.rev180329.l3vpn.ip.destination.type.VpnDestination;
20
21 class VpnIpv6NlriParser extends AbstractVpnNlriParser {
22
23     private <T extends L3vpnIpv6Destination> List<VpnDestination> getVpnDestination(DestinationType dst,
24             Class<T> dstTypeCaseClazz) {
25         if (dstTypeCaseClazz.isInstance(dst)) {
26             return dstTypeCaseClazz.cast(dst).getVpnIpv6Destination().getVpnDestination();
27         } else {
28             return null;
29         }
30     }
31
32     @Override
33     protected List<VpnDestination> getWithdrawnVpnDestination(DestinationType dstType) {
34         return getVpnDestination(dstType,
35             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.vpn.ipv6.rev180329.update.attributes
36                     .mp.unreach.nlri.withdrawn.routes.destination.type.DestinationVpnIpv6Case.class);
37     }
38
39     @Override
40     protected List<VpnDestination> getAdvertizedVpnDestination(DestinationType dstType) {
41         return getVpnDestination(
42             dstType,
43             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.vpn.ipv6.rev180329.update.attributes
44                     .mp.reach.nlri.advertized.routes.destination.type.DestinationVpnIpv6Case.class);
45     }
46
47     @Override
48     protected WithdrawnRoutes getWithdrawnRoutesByDestination(List<VpnDestination> dst) {
49         return new WithdrawnRoutesBuilder().setDestinationType(
50             new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.vpn.ipv6.rev180329.update
51                     .attributes.mp.unreach.nlri.withdrawn.routes.destination.type.DestinationVpnIpv6CaseBuilder()
52                     .setVpnIpv6Destination(new VpnIpv6DestinationBuilder()
53                             .setVpnDestination(dst).build()).build()).build();
54     }
55
56     @Override
57     protected AdvertizedRoutes getAdvertizedRoutesByDestination(List<VpnDestination> dst) {
58         return new AdvertizedRoutesBuilder().setDestinationType(
59             new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.vpn.ipv6.rev180329.update
60                     .attributes.mp.reach.nlri.advertized.routes.destination.type.DestinationVpnIpv6CaseBuilder()
61                     .setVpnIpv6Destination(new VpnIpv6DestinationBuilder()
62                             .setVpnDestination(dst).build()).build()).build();
63     }
64
65 }