Initial commit for DHCPService
[vpnservice.git] / dhcpservice / dhcpservice-impl / src / main / yang / dhcpservice-impl.yang
diff --git a/dhcpservice/dhcpservice-impl/src/main/yang/dhcpservice-impl.yang b/dhcpservice/dhcpservice-impl/src/main/yang/dhcpservice-impl.yang
new file mode 100644 (file)
index 0000000..dcbec02
--- /dev/null
@@ -0,0 +1,61 @@
+module dhcpservice-impl {
+    yang-version 1;
+    namespace "urn:opendaylight:params:xml:ns:yang:dhcpservice:impl";
+    prefix "dhcpservice-impl";
+
+    import config { prefix config; revision-date 2013-04-05; }
+    import opendaylight-md-sal-binding { prefix md-sal-binding; revision-date 2013-10-28;}
+    import odl-mdsalutil { prefix odl-mdsal; revision-date 2015-04-10;}
+
+    description
+        "Service definition for dhcpservice project";
+
+    revision "2015-07-10" {
+        description
+            "Initial revision";
+    }
+
+    identity dhcpservice-impl {
+        base config:module-type;
+        config:java-name-prefix DhcpServiceImpl;
+    }
+
+    augment "/config:modules/config:module/config:configuration" {
+        case dhcpservice-impl {
+            when "/config:modules/config:module/config:type = 'dhcpservice-impl'";
+            container broker {
+                uses config:service-ref {
+                    refine type {
+                        mandatory true;
+                        config:required-identity md-sal-binding:binding-broker-osgi-registry;
+                    }
+                }
+            }
+            container rpcregistry {
+                uses config:service-ref {
+                    refine type {
+                        mandatory true;
+                        config:required-identity md-sal-binding:binding-rpc-registry;
+                    }
+                }
+            }
+            container notification-service {
+                uses config:service-ref {
+                    refine type {
+                        mandatory true;
+                        config:required-identity md-sal-binding:binding-notification-service;
+                    }
+                }
+            }
+
+            container mdsalutil {
+                uses config:service-ref {
+                    refine type {
+                        mandatory true;
+                        config:required-identity odl-mdsal:odl-mdsalutil;
+                    }
+                }
+            }
+        }
+    }
+}