Interface ShardOperationResult

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, DatastoreShardId
    All Known Subinterfaces:
    ShardResult

    public interface ShardOperationResult
    extends org.opendaylight.yangtools.yang.binding.DataObject, DatastoreShardId

    This class represents the following YANG schema fragment defined in module cluster-admin

     grouping shard-operation-result {
       uses datastore-shard-id;
       leaf succeeded {
         type boolean;
       }
       leaf error-message {
         type string;
       }
     }
     
    The schema path to identify an instance is cluster-admin/shard-operation-result
    • Field Detail

      • QNAME

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

      • implementedInterface

        Class<? extends ShardOperationResult> 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 DatastoreShardId
      • isSucceeded

        @Nullable Boolean isSucceeded()
        Returns:
        java.lang.Boolean succeeded, or null if not present
      • getErrorMessage

        @Nullable String getErrorMessage()
        Returns:
        java.lang.String errorMessage, or null if not present