Interface BfdData

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

    public interface BfdData
    extends org.opendaylight.yangtools.yang.binding.DataRoot
    BFD configuration model for monitoring DC-Gwy control path, Ericsson's implementation of Opendaylight inter-DC communication

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

     module bfd {
       yang-version 1;
       namespace urn:ericsson:params:xml:ns:yang:ebfd;
       prefix ericsson-bfd;
       revision 2019-02-19;
       container bfd-config {
         leaf bfd-enabled {
           type boolean;
           default false;
         }
         leaf detect-mult {
           type uint32;
           default 3;
         }
         leaf min-rx {
           type uint32 {
             range 50..50000;
           }
           default 500;
         }
         leaf min-tx {
           type uint32 {
             range "1000 .. 60000";
           }
           default 6000;
         }
         leaf multihop {
           type boolean;
           default true;
         }
       }
     }
     
    • Method Detail

      • getBfdConfig

        @Nullable BfdConfig getBfdConfig()
        Returns:
        org.opendaylight.yang.gen.v1.urn.ericsson.params.xml.ns.yang.ebfd.rev190219.BfdConfig bfdConfig, or null if not present