X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fcode-generator%2Fbinding-java-api-generator%2Fsrc%2Ftest%2Fresources%2Fyang%2Fabstract-topology%402013-02-08.yang;h=8bdf32706bef854692088ea601e2a3c2afe15e86;hb=ff1b4a79cca00743a00c3b0b1100bd0ab2b2fb31;hp=7ed1f9950383076e01dd7eda51e468ba2e7d1798;hpb=bc395f78e1b7092d51348b8acac4cc83c90ab9ba;p=controller.git diff --git a/opendaylight/sal/yang-prototype/code-generator/binding-java-api-generator/src/test/resources/yang/abstract-topology@2013-02-08.yang b/opendaylight/sal/yang-prototype/code-generator/binding-java-api-generator/src/test/resources/yang/abstract-topology@2013-02-08.yang index 7ed1f99503..8bdf32706b 100644 --- a/opendaylight/sal/yang-prototype/code-generator/binding-java-api-generator/src/test/resources/yang/abstract-topology@2013-02-08.yang +++ b/opendaylight/sal/yang-prototype/code-generator/binding-java-api-generator/src/test/resources/yang/abstract-topology@2013-02-08.yang @@ -138,4 +138,34 @@ module abstract-topology { } } } -} \ No newline at end of file + + identity crypto-base { + description "crypto-base description"; + } + + identity crypto-alg { + base crypto-base; + description "crypto-alg description"; + } + + grouping target { + container nodes { + leaf source { + type int8; + } + leaf target { + type int16; + } + } + leaf id { + type string; + } + } + + leaf idreftest { + type identityref { + base crypto-alg; + } + } + +}