move vpnservice and cleanup poms
[netvirt.git] / dhcpservice / dhcpservice-impl / src / main / yang / dhcpservice-config.yang
1 module dhcpservice-config {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:dhcpservice:config";
4     prefix "dhcpservice-config";
5
6     description
7         "Service definition for dhcpservice project";
8
9     revision "2015-07-10" {
10         description
11                 "Initial revision";
12     }
13
14     container dhcpservice-config {
15         leaf controller-dhcp-enabled {
16             description "Enable the dhcpservice on the controller";
17             type boolean;
18             default false;
19         }
20
21         leaf dhcp-dynamic-allocation-pool-enabled {
22             description "Enable dynamic allocation pool on controller dhcpservice";
23             type boolean;
24             default false;
25         }
26     }
27 }