All Superinterfaces:
org.opendaylight.yangtools.yang.binding.DataRoot

@Generated("mdsal-binding-generator") public interface OpendaylightTestBug3090Data extends org.opendaylight.yangtools.yang.binding.DataRoot
Test model for Bug 3090 - An AsyncDataChangeEvent instance's getCreatedData() method can't get data if list has multi-key

This class represents the following YANG schema fragment defined in module opendaylight-test-bug-3090

 module opendaylight-test-bug-3090 {
   yang-version 1;
   namespace urn:opendaylight:params:xml:ns:opendaylight-test-bug-3090;
   prefix rpc;
   revision 2016-01-01 {
   }
   container root {
     list list-in-root {
       key "leaf-c leaf-a leaf-b";
       leaf leaf-a {
         type string;
       }
       leaf leaf-b {
         type string;
       }
       leaf leaf-c {
         type string;
       }
     }
   }
 }
 
  • Method Summary

    Modifier and Type
    Method
    Description
    Return root, or null if it is not present.
    @NonNull Root
    Return root, or an empty instance if it is not present.
  • Method Details

    • getRoot

      Root getRoot()
      Return root, or null if it is not present.
      Returns:
      Root root, or null if it is not present.
    • nonnullRoot

      @NonNull Root nonnullRoot()
      Return root, or an empty instance if it is not present.
      Returns:
      Root root, or an empty instance if it is not present.