Interface EntityOwnersData
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.DataRoot
public interface EntityOwnersData extends org.opendaylight.yangtools.yang.binding.DataRootThis module contains the base YANG definitions for an implementation of the EntityOwnershipService which stores entity ownership information in the data storeThis class represents the following YANG schema fragment defined in module entity-owners
module entity-owners { yang-version 1; namespace urn:opendaylight:params:xml:ns:yang:controller:md:sal:clustering:entity-owners; prefix entity-owners; revision 2015-08-04 { } 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; } } } } } }
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable EntityOwnersgetEntityOwners()
-
-
-
Method Detail
-
getEntityOwners
@Nullable EntityOwners getEntityOwners()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.clustering.entity.owners.rev150804.EntityOwnersentityOwners, ornullif not present
-
-