Populate parser/ hierarchy
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / stmt-test / extensions / yang-ext.yang
diff --git a/yang/yang-parser-rfc7950/src/test/resources/stmt-test/extensions/yang-ext.yang b/yang/yang-parser-rfc7950/src/test/resources/stmt-test/extensions/yang-ext.yang
deleted file mode 100644 (file)
index 0fbe94d..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-module yang-ext {
-    yang-version 1;
-    namespace "urn:opendaylight:yang:extension:yang-ext";
-    prefix "ext";
-    
-    contact "Anton Tkacik <ttkacik@cisco.com>";
-
-    description 
-            "Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
-
-            This program and the accompanying materials are made available under the
-            terms of the Eclipse Public License v1.0 which accompanies this distribution,
-            and is available at http://www.eclipse.org/legal/epl-v10.html";
-
-    revision "2013-07-09" {
-        description "";
-    }
-
-    // Augmentation name
-
-    extension "augment-identifier" {
-        description 
-           "YANG language extension which assigns an identifier to 
-            augmentation. Augment identifier is used to identify
-            specific augment statement by name. 
-
-            The identifier syntax is defined formally defined by the rule
-            'identifier' in Section 12 of RFC 6020.
-
-            All augment identifiers defined in a namespace MUST be unique.
-            The namespace of augment identifiers is shared by module and
-            its submodules.";
-
-            /*
-                Discussion:
-                This extension allows for ease of development / debug
-                of YANG modules and it is suitable for code generation,
-                where each augment statement is nicely identified by
-                unique name instead of combination of augment target
-                and when condition. 
-            */
-        argument "identifier";
-    }
-
-
-    // Context-aware RPCs
-
-    grouping rpc-context-ref {
-        description 
-           "A reference to RPC context.";
-        leaf context-instance {
-            type instance-identifier;
-            description "Pointer to the context. ";
-        }
-    }
-
-    extension "rpc-context-instance" {
-        description
-           "YANG language extension which defines enclosing (parent) 
-            schema node as referencable context for RPCs.
-
-            The argument is identity which is used to identify RPC context
-            type.";
-
-        argument "context-type";
-    }
-
-    extension "context-reference" {
-        argument "context-type";
-    }
-
-    extension "context-instance" {
-        argument "context-type";
-    }
-    
-    extension "instance-target" {
-       argument "path";
-    }
-}