Interface BmpMonitorConfig

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<BmpMonitorConfig>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<OdlBmpMonitors>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<BmpMonitorConfigKey>, ServerConfig

    public interface BmpMonitorConfig
    extends org.opendaylight.yangtools.yang.binding.ChildOf<OdlBmpMonitors>, org.opendaylight.yangtools.yang.binding.Augmentable<BmpMonitorConfig>, ServerConfig, org.opendaylight.yangtools.yang.binding.Identifiable<BmpMonitorConfigKey>

    This class represents the following YANG schema fragment defined in module odl-bmp-monitor-config

     list bmp-monitor-config {
       key monitor-id;
       leaf monitor-id {
         type bmp-monitor:monitor-id;
       }
       uses server-config;
       list monitored-router {
         leaf address {
           type inet:ip-address-no-zone;
         }
         key address;
         leaf active {
           type boolean;
         }
         leaf port {
           when "../active = 'true'";
           type inet:port-number;
         }
         leaf password {
           type rfc2385:rfc2385-key;
         }
       }
     }
     
    The schema path to identify an instance is odl-bmp-monitor-config/odl-bmp-monitors/bmp-monitor-config

    To create instances of this class use BmpMonitorConfigBuilder.

    See Also:
    BmpMonitorConfigBuilder, BmpMonitorConfigKey
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<BmpMonitorConfig> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
        Specified by:
        implementedInterface in interface ServerConfig
      • getMonitorId

        @Nullable MonitorId getMonitorId()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.monitor.rev200120.MonitorId monitorId, or null if not present
      • getMonitoredRouter

        @Nullable List<MonitoredRouter> getMonitoredRouter()
        Returns:
        java.util.List monitoredRouter, or null if not present
      • nonnullMonitoredRouter

        default @NonNull List<MonitoredRouter> nonnullMonitoredRouter()
        Returns:
        java.util.List monitoredRouter, or an empty list if it is not present