Interface MappingAuthkeyList
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
public interface MappingAuthkeyList extends org.opendaylight.yangtools.yang.binding.DataObjectThis class represents the following YANG schema fragment defined in module odl-mappingservice
grouping mapping-authkey-list { list mapping-authkey-item { key mapping-authkey-item-id; leaf mapping-authkey-item-id { type string; } uses lisp-proto:mapping-authkey-container; } }The schema path to identify an instance is odl-mappingservice/mapping-authkey-list
-
-
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<MappingAuthkeyItem>getMappingAuthkeyItem()Class<? extends MappingAuthkeyList>implementedInterface()default @NonNull List<MappingAuthkeyItem>nonnullMappingAuthkeyItem()
-
-
-
Method Detail
-
implementedInterface
Class<? extends MappingAuthkeyList> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getMappingAuthkeyItem
@Nullable List<MappingAuthkeyItem> getMappingAuthkeyItem()
- Returns:
java.util.ListmappingAuthkeyItem, ornullif not present
-
nonnullMappingAuthkeyItem
default @NonNull List<MappingAuthkeyItem> nonnullMappingAuthkeyItem()
- Returns:
java.util.ListmappingAuthkeyItem, or an empty list if it is not present
-
-