3b966815f690b1db782fbfee65f91df8ee099ccf
[bgpcep.git] / bgp / l3vpn / src / main / java / org / opendaylight / protocol / bgp / l3vpn / unicast / ipv6 / VpnIpv6NextHopParserSerializer.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.unicast.ipv6;
9
10 import org.opendaylight.protocol.bgp.l3vpn.unicast.AbstractVpnNextHopParserSerializer;
11 import org.opendaylight.protocol.util.Ipv6Util;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.next.hop.c.next.hop.Ipv6NextHopCase;
13
14 public final class VpnIpv6NextHopParserSerializer extends AbstractVpnNextHopParserSerializer {
15     public VpnIpv6NextHopParserSerializer() {
16         super(Ipv6Util.IPV6_LENGTH, Ipv6NextHopCase.class);
17     }
18 }