Interface LldpSpeakerService

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.RpcService
    All Known Implementing Classes:
    OperationalStatusChangeService

    public interface LldpSpeakerService
    extends org.opendaylight.yangtools.yang.binding.RpcService
    Interface for implementing the following YANG RPCs defined in module lldp-speaker
     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;
         }
       }
     }