• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • utils
  • yangutils
  • src
  • test
  • resources
  • SelfFileLinkingWithTypdefHierarchical...
  • Vinod Kumar S's avatar
    YANG Grouping Linker Support · d4deb061 ...
    d4deb061
    Change-Id: I2fec0c0bb4d1584e82ffba3228106897ccad2bf5
    Vinod Kumar S authored 2016-04-15 18:09:28 +0530
SelfFileLinkingWithTypdefHierarchicalRefUnresolved.yang 526 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
module Test {
    yang-version 1;
    namespace http://huawei.com;
    prefix Ant;
    import ietf-yang-types {
             prefix "P";
         }
    typedef Percentage {
    type P:Per;
    }
    container ospf {
        list valid {
            key "invalid-interval";
            leaf invalid-interval {
                type FirstClass;
            }
            typedef FirstClass {
                type PassingClass;
            }
        }
        typedef PassingClass {
            type Percentage;
        }
    }
}