Moved MD SAL from sal/yang-prototype to md-sal
[controller.git] / opendaylight / sal / yang-prototype / sal / model / model-flow-service / src / main / yang / packet-processing.yang
diff --git a/opendaylight/sal/yang-prototype/sal/model/model-flow-service/src/main/yang/packet-processing.yang b/opendaylight/sal/yang-prototype/sal/model/model-flow-service/src/main/yang/packet-processing.yang
deleted file mode 100644 (file)
index 260de5f..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-module packet-processing {
-    namespace "urn:opendaylight:packet:service";
-    prefix flow;
-
-    import opendaylight-inventory {prefix inv;}
-    import ietf-inet-types {prefix inet;}
-    import ietf-yang-types {prefix yang;} 
-    import opendaylight-l2-types {prefix types;}
-    
-    revision "2013-07-09" {
-        description "";
-    }
-
-    grouping raw-packet {
-       leaf ingress {
-               type inv:node-connector-ref;
-       }
-       leaf payload {
-               type binary;
-       }
-    }
-
-    grouping ethernet-packet {
-       leaf source {
-               type yang:mac-address;
-       }
-
-       leaf destination {
-               type yang:mac-address;
-       }
-    }
-
-
-    notification packet-received {
-       uses raw-packet;
-    }
-
-    rpc transmit-packet {
-       input {
-               leaf egress {
-                       type inv:node-connector-ref;
-               }
-               uses raw-packet;
-       }
-    }
-}
\ No newline at end of file