public interface OpendaylightMdsalBindingTestData extends DataRoot
This class represents the following YANG schema fragment defined in module opendaylight-mdsal-binding-test
module opendaylight-mdsal-binding-test { namespace urn:opendaylight:params:xml:ns:yang:mdsal:test:binding; prefix list-test; revision 2014-07-01 { } typedef int32-string-union { type union { type int32; type string; } } identity test-root; identity test-one { base test-root; } identity test-two { base test-root; } typedef test-identityref { type identityref { base test-root; } } grouping two-level-list { list top-level-list { key name; leaf name { type string; } choice choice-in-list { case simple-case { leaf simple { type string; } } } list nested-list { key name; leaf name { type string; } leaf type { type string; } ordered-by user; } } leaf-list top-level-leaf-list { type string; } leaf-list top-level-ordered-leaf-list { type string; ordered-by user; } list choice-list { key name; leaf name { type string; } choice choice-in-choice-list; } } grouping choice { choice identifier { case simple { container simple-id { leaf id { type int32; } } } case extended { container extended-id { leaf id { type string; } } } } } container top { uses two-level-list; } container choice-container { uses choice; } rpc put-top { input { uses two-level-list; } output; } notification two-level-list-changed { uses two-level-list; } rpc get-top { output { uses two-level-list; } input; } augment /list-test:top { leaf augmented-string { type string; } } augment /list-test:top { leaf augmented-int { type int32; } } }
Modifier and Type | Method and Description |
---|---|
@Nullable ChoiceContainer |
getChoiceContainer() |
@Nullable Top |
getTop() |
@Nullable Top getTop()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.mdsal.test.binding.rev140701.Top
top
, or null
if not present@Nullable ChoiceContainer getChoiceContainer()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.mdsal.test.binding.rev140701.ChoiceContainer
choiceContainer
, or null
if not presentCopyright © 2019 OpenDaylight. All rights reserved.