• 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
  • ..
  • IntraSingleUses
  • test.yang
  • Bharat saraswal's avatar
    [ONOS-4829] Augmented data method generator implmentation. · b551aae5 ...
    b551aae5
    Change-Id: I0cb68dd10a748e5b66eec0b832574f408a23ba5c
    Bharat saraswal authored 2016-07-14 18:27:06 +0000
test.yang 545 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 26 27 28 29 30 31 32 33
module test {  
    namespace "xpath:intra:single";  
    prefix test ;  
      
    organization "";  
    contact "";  
       
    description   
        "Defines basic service types for L3VPN service.";  
       
    revision "2015-12-16" {  
        reference "";  
    }  

    grouping group1 {
        container cont1 {
           leaf leaf1 {
             type int32;
           }
        }
    }

    container cont2 {
         uses group1;
    }

    augment /cont2/cont1 {
       leaf a {
          type int32;
       }
    }
}