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 store

    This 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 Detail

      • getLists

        Lists getLists()
        Return lists, or null if it is not present.
        Returns:
        Lists lists, or null if it is not present.