Interface SyncOptimizationsCapabilityTlv
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
public interface SyncOptimizationsCapabilityTlv extends org.opendaylight.yangtools.yang.binding.DataObjectThis class represents the following YANG schema fragment defined in module odl-pcep-sync-optimizations
grouping sync-optimizations-capability-tlv { leaf triggered-initial-sync { type boolean; default false; } leaf delta-lsp-sync-capability { type boolean; default false; } leaf triggered-resync { type boolean; default false; } leaf include-db-version { type boolean; default false; } }The schema path to identify an instance is odl-pcep-sync-optimizations/sync-optimizations-capability-tlv
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<? extends SyncOptimizationsCapabilityTlv>implementedInterface()@Nullable BooleanisDeltaLspSyncCapability()@Nullable BooleanisIncludeDbVersion()@Nullable BooleanisTriggeredInitialSync()@Nullable BooleanisTriggeredResync()
-
-
-
Method Detail
-
implementedInterface
Class<? extends SyncOptimizationsCapabilityTlv> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
isTriggeredInitialSync
@Nullable Boolean isTriggeredInitialSync()
- Returns:
java.lang.BooleantriggeredInitialSync, ornullif not present
-
isDeltaLspSyncCapability
@Nullable Boolean isDeltaLspSyncCapability()
- Returns:
java.lang.BooleandeltaLspSyncCapability, ornullif not present
-
isTriggeredResync
@Nullable Boolean isTriggeredResync()
- Returns:
java.lang.BooleantriggeredResync, ornullif not present
-
isIncludeDbVersion
@Nullable Boolean isIncludeDbVersion()
- Returns:
java.lang.BooleanincludeDbVersion, ornullif not present
-
-