Interface Nexthops

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<Nexthops>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<L3vpnLbNexthops>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<NexthopsKey>

    public interface Nexthops
    extends org.opendaylight.yangtools.yang.binding.ChildOf<L3vpnLbNexthops>, org.opendaylight.yangtools.yang.binding.Augmentable<Nexthops>, org.opendaylight.yangtools.yang.binding.Identifiable<NexthopsKey>

    This class represents the following YANG schema fragment defined in module odl-l3vpn

     list nexthops {
       key nexthop-key;
       leaf nexthop-key {
         type string;
       }
       leaf group-id {
         type string;
       }
       leaf-list target-device-id {
         type string;
       }
     }
     
    The schema path to identify an instance is odl-l3vpn/l3vpn-lb-nexthops/nexthops

    To create instances of this class use NexthopsBuilder.

    See Also:
    NexthopsBuilder, NexthopsKey
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default java.lang.Class<Nexthops> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getNexthopKey

        @Nullable java.lang.String getNexthopKey()
        Returns:
        java.lang.String nexthopKey, or null if not present
      • getGroupId

        @Nullable java.lang.String getGroupId()
        Returns:
        java.lang.String groupId, or null if not present
      • getTargetDeviceId

        @Nullable java.util.List<java.lang.String> getTargetDeviceId()
        Returns:
        java.util.List targetDeviceId, or null if not present
      • key

        NexthopsKey key()
        Specified by:
        key in interface org.opendaylight.yangtools.yang.binding.Identifiable<NexthopsKey>