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-ownersTo create instances of this class use
EntityOwnersBuilder.- See Also:
EntityOwnersBuilder
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable List<EntityType>getEntityType()default Class<EntityOwners>implementedInterface()default @NonNull List<EntityType>nonnullEntityType()
-
-
-
Method Detail
-
implementedInterface
default Class<EntityOwners> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getEntityType
@Nullable List<EntityType> getEntityType()
- Returns:
java.util.ListentityType, ornullif not present
-
nonnullEntityType
default @NonNull List<EntityType> nonnullEntityType()
- Returns:
java.util.ListentityType, or an empty list if it is not present
-
-