Interface OdlLispSbData

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

    @Generated("mdsal-binding-generator")
    public interface OdlLispSbData
    extends org.opendaylight.yangtools.yang.binding.DataRoot
    API for the LISP southbound module

    This class represents the following YANG schema fragment defined in module odl-lisp-sb

     module odl-lisp-sb {
       yang-version 1;
       namespace urn:opendaylight:lfm:lisp-sb;
       prefix lisp-sb;
       import odl-lisp-proto {
         prefix lisp-proto;
         revision-date 2015-11-05;
       }
       revision 2015-09-04 {
       }
       grouping ctrl-msg-stats {
         leaf rx-unknown {
           type int64;
         }
         leaf tx-errors {
           type int64;
         }
         list control-message {
           ordered-by user;
           leaf msg-type {
             type lisp-proto:message-type;
           }
           leaf rx-count {
             type int64;
           }
           leaf tx-count {
             type int64;
           }
         }
       }
       grouping cache-stats {
         leaf hits {
           type int64;
         }
         leaf misses {
           type int64;
         }
       }
       rpc send-map-request {
         input input {
           uses lisp-proto:MapRequestMessage;
         }
       }
       rpc send-map-reply {
         input input {
           uses lisp-proto:MapReplyMessage;
         }
       }
       rpc send-map-register {
         input input {
           uses lisp-proto:MapRegisterMessage;
         }
       }
       rpc send-map-notify {
         input input {
           uses lisp-proto:MapNotifyMessage;
         }
       }
       rpc get-stats {
         output output {
           container control-message-stats {
             uses ctrl-msg-stats;
           }
           container map-register-cache-stats {
             uses cache-stats;
           }
         }
       }
       rpc reset-stats;
     }