Interface OpendaylightSalTestStoreData
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.DataRoot
public interface OpendaylightSalTestStoreData extends org.opendaylight.yangtools.yang.binding.DataRootRegression Test model for data storeThis class represents the following YANG schema fragment defined in module UnqualifiedQName{localName=opendaylight-sal-test-store}
module opendaylight-sal-test-store { yang-version 1; namespace urn:opendaylight:params:xml:ns:yang:controller:md:sal:test:store; prefix binding-impl; revision 2014-04-22 { } grouping name-value { leaf name { type string; } leaf value { type string; } } container lists { config false; container unordered-container { list unordered-list { key name; uses name-value; } } container ordered-container { list ordered-list { ordered-by user; key name; uses name-value; } } container unkeyed-container { list unkeyed-list { uses name-value; } } } }
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable ListsgetLists()Return lists, ornullif it is not present..
-
-
-
Method Detail
-
getLists
@Nullable Lists getLists()
Return lists, ornullif it is not present..- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.store.rev140422.Listslists, ornullif it is not present.
-
-