Guest User

Untitled

a guest
May 4th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. module custom-of-action {
  2. yang-version 1;
  3. namespace "urn:opendaylight:openflow:extension:custom:action";
  4. prefix "custom-of-action";
  5.  
  6. import openflow-types {prefix oft;}
  7. import openflow-action {prefix ofaction;}
  8. import yang-ext {prefix ext; revision-date "2013-07-09";}
  9.  
  10. identity custom-of-action {
  11. description "Foo action description";
  12. base oft:action-base;
  13. }
  14.  
  15. augment "/ofaction:actions-container/ofaction:action" {
  16. ext:augment-identifier "custom-of-action";
  17. leaf first {
  18. type uint16;
  19. }
  20. leaf second {
  21. type uint16;
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment