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