Interface ForwardingRulesManagerConfig
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<ForwardingRulesManagerConfig>
,org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
,org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.ChildOf<ForwardingRulesManagerConfigData>
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
@Generated("mdsal-binding-generator")
public interface ForwardingRulesManagerConfig
extends org.opendaylight.yangtools.yang.binding.ChildOf<ForwardingRulesManagerConfigData>, org.opendaylight.yangtools.yang.binding.Augmentable<ForwardingRulesManagerConfig>
This class represents the following YANG schema fragment defined in module forwarding-rules-manager-config
container forwarding-rules-manager-config { leaf disable-reconciliation { type boolean; default false; } leaf stale-marking-enabled { type boolean; default false; } leaf reconciliation-retry-count { type uint16; default 5; } leaf bundle-based-reconciliation-enabled { type boolean; default false; } }
To create instances of this class use ForwardingRulesManagerConfigBuilder
.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QName
YANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
bindingEquals
(@NonNull ForwardingRulesManagerConfig thisObj, Object obj) Default implementation ofObject.equals(Object)
contract for this interface.static int
bindingHashCode
(@NonNull ForwardingRulesManagerConfig obj) Default implementation ofObject.hashCode()
contract for this interface.static String
bindingToString
(@NonNull ForwardingRulesManagerConfig obj) Default implementation ofObject.toString()
contract for this interface.Return bundleBasedReconciliationEnabled, ornull
if it is not present.Return disableReconciliation, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint16
Return reconciliationRetryCount, ornull
if it is not present.Return staleMarkingEnabled, ornull
if it is not present.default Class<ForwardingRulesManagerConfig>
default @NonNull Boolean
Return bundleBasedReconciliationEnabled, guaranteed to be non-null.default @NonNull Boolean
Return disableReconciliation, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint16
Return reconciliationRetryCount, guaranteed to be non-null.default @NonNull Boolean
Return staleMarkingEnabled, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yangtools.yang.binding.Augmentable
augmentation, augmentationOrElseThrow, augmentationOrElseThrow, augmentations
-
Field Details
-
QNAME
static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAMEYANG identifier of the statement represented by this class.
-
-
Method Details
-
implementedInterface
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
bindingHashCode
Default implementation ofObject.hashCode()
contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent hashing results across all implementations.- Parameters:
obj
- Object for which to generate hashCode() result.- Returns:
- Hash code value of data modeled by this interface.
- Throws:
NullPointerException
- ifobj
is null
-
bindingEquals
Default implementation ofObject.equals(Object)
contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent equality results across all implementations.- Parameters:
thisObj
- Object acting as the receiver of equals invocationobj
- Object acting as argument to equals invocation- Returns:
- True if thisObj and obj are considered equal
- Throws:
NullPointerException
- ifthisObj
is null
-
bindingToString
Default implementation ofObject.toString()
contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent string representations across all implementations.- Parameters:
obj
- Object for which to generate toString() result.- Returns:
String
value of data modeled by this interface.- Throws:
NullPointerException
- ifobj
is null
-
getDisableReconciliation
Boolean getDisableReconciliation()Return disableReconciliation, ornull
if it is not present.- Returns:
Boolean
disableReconciliation, ornull
if it is not present.
-
requireDisableReconciliation
Return disableReconciliation, guaranteed to be non-null.- Returns:
Boolean
disableReconciliation, guaranteed to be non-null.- Throws:
NoSuchElementException
- if disableReconciliation is not present
-
getStaleMarkingEnabled
Boolean getStaleMarkingEnabled()Return staleMarkingEnabled, ornull
if it is not present.- Returns:
Boolean
staleMarkingEnabled, ornull
if it is not present.
-
requireStaleMarkingEnabled
Return staleMarkingEnabled, guaranteed to be non-null.- Returns:
Boolean
staleMarkingEnabled, guaranteed to be non-null.- Throws:
NoSuchElementException
- if staleMarkingEnabled is not present
-
getReconciliationRetryCount
org.opendaylight.yangtools.yang.common.Uint16 getReconciliationRetryCount()Return reconciliationRetryCount, ornull
if it is not present.- Returns:
Uint16
reconciliationRetryCount, ornull
if it is not present.
-
requireReconciliationRetryCount
default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireReconciliationRetryCount()Return reconciliationRetryCount, guaranteed to be non-null.- Returns:
Uint16
reconciliationRetryCount, guaranteed to be non-null.- Throws:
NoSuchElementException
- if reconciliationRetryCount is not present
-
getBundleBasedReconciliationEnabled
Boolean getBundleBasedReconciliationEnabled()Return bundleBasedReconciliationEnabled, ornull
if it is not present.- Returns:
Boolean
bundleBasedReconciliationEnabled, ornull
if it is not present.
-
requireBundleBasedReconciliationEnabled
Return bundleBasedReconciliationEnabled, guaranteed to be non-null.- Returns:
Boolean
bundleBasedReconciliationEnabled, guaranteed to be non-null.- Throws:
NoSuchElementException
- if bundleBasedReconciliationEnabled is not present
-