Interface LldpSpeakerData

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

    @Generated("mdsal-binding-generator")
    public interface LldpSpeakerData
    extends org.opendaylight.yangtools.yang.binding.DataRoot
    Application that send LLDPDU frames to all Openflow switch ports.

    This class represents the following YANG schema fragment defined in module lldp-speaker

     module lldp-speaker {
       yang-version 1;
       namespace urn:opendaylight:params:xml:ns:yang:openflow:applications:lldp-speaker;
       prefix lldp-speaker;
       revision 2014-10-23 {
       }
       typedef oper-status {
         type enumeration {
           enum STANDBY {
           }
           enum RUN {
           }
         }
       }
       rpc change-operational-status {
         input input {
           leaf operational-status {
             type oper-status;
           }
         }
       }
       rpc get-operational-status {
         output output {
           leaf operational-status {
             type oper-status;
           }
         }
       }
       rpc set-lldp-flood-interval {
         input input {
           leaf interval {
             type int64;
           }
         }
       }
       rpc get-lldp-flood-interval {
         output output {
           leaf interval {
             type int64;
           }
         }
       }
     }