Make map register cache timeout configurable.
[lispflowmapping.git] / mappingservice / southbound / src / main / yang / odl-lisp-sb-config.yang
1 module odl-lisp-sb-config {
2
3     yang-version 1;
4     namespace "urn:opendaylight:params:xml:ns:yang:controller:config:lisp-sb:config";
5     prefix "lisp-sb-config";
6
7     description
8         "This module contains the base YANG definitions for mappingservice
9         southbound plugin implementation.";
10
11     revision "2015-05-17" {
12         description "Initial revision.";
13     }
14
15     container lisp-sb-config {
16         leaf bind-address {
17             type string;
18             default "0.0.0.0";
19         }
20
21         leaf map-register-cache {
22             type boolean;
23             default true;
24         }
25     }
26 }