Interface EntityOwners

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

    public interface EntityOwners
    extends org.opendaylight.yangtools.yang.binding.ChildOf<EntityOwnersData>, org.opendaylight.yangtools.yang.binding.Augmentable<EntityOwners>

    This class represents the following YANG schema fragment defined in module entity-owners

     container entity-owners {
       list entity-type {
         key type;
         leaf type {
           type string;
         }
         list entity {
           key id;
           leaf id {
             type instance-identifier;
           }
           leaf owner {
             type string;
           }
           list candidate {
             key name;
             ordered-by user;
             leaf name {
               type string;
             }
           }
         }
       }
     }
     
    The schema path to identify an instance is entity-owners/entity-owners

    To create instances of this class use EntityOwnersBuilder.

    See Also:
    EntityOwnersBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<EntityOwners> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getEntityType

        @Nullable List<EntityType> getEntityType()
        Returns:
        java.util.List entityType, or null if not present
      • nonnullEntityType

        default @NonNull List<EntityType> nonnullEntityType()
        Returns:
        java.util.List entityType, or an empty list if it is not present