Interface FibEntryInputs

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    CreateFibEntryInput, RemoveFibEntryInput

    public interface FibEntryInputs
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module fib-rpc

     grouping fib-entry-inputs {
       leaf source-dpid {
         type uint64;
       }
       leaf vpn-name {
         type string;
       }
       leaf service-id {
         type uint32;
       }
       leaf ip-address {
         type string;
       }
       leaf ip-address-source {
         type enumeration {
           enum ExternalFixedIP;
           enum FloatingIP;
         }
       }
     }
     
    The schema path to identify an instance is fib-rpc/fib-entry-inputs
    • Field Detail

      • QNAME

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

      • implementedInterface

        java.lang.Class<? extends FibEntryInputs> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getSourceDpid

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getSourceDpid()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 sourceDpid, or null if not present
      • getVpnName

        @Nullable java.lang.String getVpnName()
        Returns:
        java.lang.String vpnName, or null if not present
      • getServiceId

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getServiceId()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 serviceId, or null if not present
      • getIpAddress

        @Nullable java.lang.String getIpAddress()
        Returns:
        java.lang.String ipAddress, or null if not present
      • getIpAddressSource

        @Nullable FibEntryInputs.IpAddressSource getIpAddressSource()
        This field indicates whether the IP address here is an External-Fixed-Ip(Owned by Router), or Floating-Ip(Used by Ports).
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.fib.rpc.rev160121.FibEntryInputs.IpAddressSource ipAddressSource, or null if not present