public interface ShardOperationResult
extends org.opendaylight.yangtools.yang.binding.DataObject
This class represents the following YANG schema fragment defined in module cluster-admin
grouping shard-operation-result {
leaf shard-name {
type string;
}
leaf data-store-type {
type data-store-type;
}
leaf succeeded {
type boolean;
}
leaf error-message {
type string;
}
}
The schema path to identify an instance is
cluster-admin/shard-operation-result| Modifier and Type | Field and Description |
|---|---|
static @NonNull org.opendaylight.yangtools.yang.common.QName |
QNAME |
| Modifier and Type | Method and Description |
|---|---|
@Nullable DataStoreType |
getDataStoreType() |
@Nullable String |
getErrorMessage() |
@Nullable String |
getShardName() |
@Nullable Boolean |
isSucceeded() |
@Nullable String getShardName()
java.lang.String shardName, or null if not present@Nullable DataStoreType getDataStoreType()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.cluster.admin.rev151013.DataStoreType dataStoreType, or null if not present@Nullable Boolean isSucceeded()
java.lang.Boolean succeeded, or null if not present@Nullable String getErrorMessage()
java.lang.String errorMessage, or null if not presentCopyright © 2019 OpenDaylight. All rights reserved.