Interface L3nexthopData

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.DataRoot

    public interface L3nexthopData
    extends org.opendaylight.yangtools.yang.binding.DataRoot

    This class represents the following YANG schema fragment defined in module l3nexthop

     module l3nexthop {
       namespace urn:opendaylight:netvirt:l3nexthop;
       prefix l3nexthop;
       revision 2015-04-09 {
       }
       container l3nexthop {
         config false;
         list vpnNexthops {
           key vpnId;
           leaf vpnId {
             type uint32;
           }
           list vpnNexthop {
             key IpAddress;
             leaf IpAddress {
               type string;
             }
             leaf egressPointer {
               type uint32;
             }
             leaf dpnId {
               type uint64;
             }
             list ip-adjacencies {
               key ip-adjacency;
               leaf ip-adjacency {
                 type string;
               }
             }
           }
         }
         list tunnelNexthops {
           key dpnId;
           leaf dpnId {
             type uint64;
           }
           list tunnelNexthop {
             key IpAddress;
             leaf IpAddress {
               type string;
             }
             leaf egressPointer {
               type uint32;
             }
           }
         }
       }
     }
     
    • Method Detail

      • getL3nexthop

        @Nullable L3nexthop getL3nexthop()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.l3nexthop.rev150409.L3nexthop l3nexthop, or null if not present