Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For a given identity one abstract class file will be generated.

Example
Code Block
titleinput YANG file
File : ietf-network.yang
module ietf-network {
    yang-version 1;
    namespace "urn:ietf:params:xml:ns:yang:ietf-network";
    prefix nd;

    identity tunnel-type {
      description  "Base identity from which specific tunnel types are derived.";
    }

}
Code Block
titleGenerated java files
File : TunnelType.java
public abstract class TunnelType {
}

Golden Eye Demo 

Link: https://www.youtube.com/watch?v=ipbu0x0LcDk

...

RFC6020 - https://tools.ietf.org/html/rfc6020

File : NetworkId.java