Interface MapRegisterCacheKey
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<MapRegisterCacheKey>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<MapRegisterCacheKeyContainer>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
public interface MapRegisterCacheKey extends org.opendaylight.yangtools.yang.binding.ChildOf<MapRegisterCacheKeyContainer>, org.opendaylight.yangtools.yang.binding.Augmentable<MapRegisterCacheKey>
The lookup key in the Map-Register fast path.This class represents the following YANG schema fragment defined in module odl-lisp-proto
container map-register-cache-key { leaf eid-prefix { type binary; } leaf xtr-id { type binary; } leaf site-id { type binary; } }The schema path to identify an instance is odl-lisp-proto/map-register-cache-key-container/map-register-cache-keyTo create instances of this class use
MapRegisterCacheKeyBuilder.- See Also:
MapRegisterCacheKeyBuilder
-
-
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 byte[]getEidPrefix()The EID prefix stored as binary databyte[]getSiteId()64 bit site identifier.byte[]getXtrId()128 bit xTR identifier.default java.lang.Class<MapRegisterCacheKey>implementedInterface()
-
-
-
Method Detail
-
implementedInterface
default java.lang.Class<MapRegisterCacheKey> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getEidPrefix
byte[] getEidPrefix()
The EID prefix stored as binary data- Returns:
byte[]eidPrefix, ornullif not present
-
getXtrId
byte[] getXtrId()
128 bit xTR identifier.- Returns:
byte[]xtrId, ornullif not present
-
getSiteId
byte[] getSiteId()
64 bit site identifier.- Returns:
byte[]siteId, ornullif not present
-
-