Remove trailing whitespace
[openflowjava.git] / openflow-protocol-api / src / main / yang / openflow-action.yang
index 950d8b0c8142de764a84f02d2247b6e3ffbb6e48..0f579fa0bbb984dc3d0f8de39034e14560e2ac02 100644 (file)
@@ -5,7 +5,7 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
+
  module openflow-action {
     namespace "urn:opendaylight:openflow:common:action";
     prefix "ofaction";
         description "";
         base oft:action-base;
     }
-    
+
+    identity experimenter-action-sub-type {
+        description "The base identity for vendor's actions.";
+    }
+
     container actions-container {
         uses actions-grouping;
     }
-    
+
     grouping actions-grouping {
         list action {
-            key "type";
+            config false;
             leaf type {
                 type identityref {
                     base oft:action-base;
             }
         }
     }
-    
+
     // OF1.0 structures
     identity set_vlan_vid {
         description "Set the 802.1q VLAN id (OF v1.0).";
         base oft:action-base;
     }
 
-}
\ No newline at end of file
+}