Interface ShardResultOutput
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
AddReplicasForAllShardsOutput,ChangeMemberVotingStatesForAllShardsOutput,FlipMemberVotingStatesForAllShardsOutput,GetKnownClientsForAllShardsOutput,RemoveAllShardReplicasOutput
public interface ShardResultOutput extends org.opendaylight.yangtools.yang.binding.DataObjectThis class represents the following YANG schema fragment defined in module cluster-admin
grouping shard-result-output { list shard-result { key "shard-name data-store-type"; uses shard-operation-result; } }The schema path to identify an instance is cluster-admin/shard-result-output
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable List<ShardResult>getShardResult()The list of results, one per shardClass<? extends ShardResultOutput>implementedInterface()default @NonNull List<ShardResult>nonnullShardResult()
-
-
-
Method Detail
-
implementedInterface
Class<? extends ShardResultOutput> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getShardResult
@Nullable List<ShardResult> getShardResult()
The list of results, one per shard- Returns:
java.util.ListshardResult, ornullif not present
-
nonnullShardResult
default @NonNull List<ShardResult> nonnullShardResult()
- Returns:
java.util.ListshardResult, or an empty list if it is not present
-
-