Interface ReconcileInput

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<ReconcileInput>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.RpcInput

    public interface ReconcileInput
    extends org.opendaylight.yangtools.yang.binding.RpcInput, org.opendaylight.yangtools.yang.binding.Augmentable<ReconcileInput>

    This class represents the following YANG schema fragment defined in module reconciliation

     input input {
       leaf-list nodes {
         type uint64;
       }
       leaf reconcile-all-nodes {
         type boolean;
         mandatory false;
         default false;
       }
     }
     
    The schema path to identify an instance is reconciliation/reconcile/input

    To create instances of this class use ReconcileInputBuilder.

    See Also:
    ReconcileInputBuilder
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default Class<ReconcileInput> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.RpcInput
      • getNodes

        @Nullable List<org.opendaylight.yangtools.yang.common.Uint64> getNodes()
        List of nodes to be reconciled
        Returns:
        java.util.List nodes, or null if not present
      • isReconcileAllNodes

        Boolean isReconcileAllNodes()
        Flag to indicate that all nodes to be reconciled
        Returns:
        java.lang.Boolean reconcileAllNodes, or null if not present