Interface OpendaylightSalTestStoreData
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.DataRoot
@Generated("mdsal-binding-generator") public interface OpendaylightSalTestStoreData extends org.opendaylight.yangtools.yang.binding.DataRoot
Regression Test model for data storeThis class represents the following YANG schema fragment defined in module 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 ListsgetLists()Return lists, ornullif it is not present.
-
-
-
Method Detail
-
getLists
Lists getLists()
Return lists, ornullif it is not present.- Returns:
Listslists, ornullif it is not present.
-
-