Interface InterfaceChildInfo

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<InterfaceChildInfo>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<OdlInterfaceMetaData>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    public interface InterfaceChildInfo
    extends org.opendaylight.yangtools.yang.binding.ChildOf<OdlInterfaceMetaData>, org.opendaylight.yangtools.yang.binding.Augmentable<InterfaceChildInfo>
    The container of all Child-Interfaces for a given interface.

    This class represents the following YANG schema fragment defined in module odl-interface-meta

     container interface-child-info {
       list interface-parent-entry {
         key parent-interface;
         leaf parent-interface {
           type string;
         }
         list interface-child-entry {
           key child-interface;
           leaf child-interface {
             type string;
           }
         }
       }
     }
     
    The schema path to identify an instance is odl-interface-meta/interface-child-info

    To create instances of this class use InterfaceChildInfoBuilder.

    See Also:
    InterfaceChildInfoBuilder
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default java.lang.Class<InterfaceChildInfo> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getInterfaceParentEntry

        @Nullable java.util.List<InterfaceParentEntry> getInterfaceParentEntry()
        Returns:
        java.util.List interfaceParentEntry, or null if not present
      • nonnullInterfaceParentEntry

        default @NonNull java.util.List<InterfaceParentEntry> nonnullInterfaceParentEntry()
        Returns:
        java.util.List interfaceParentEntry, or an empty list if it is not present