Package com.daml.ledger.api.v1.admin
Interface PartyManagementServiceOuterClass.GetPartiesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PartyManagementServiceOuterClass.GetPartiesRequest
,PartyManagementServiceOuterClass.GetPartiesRequest.Builder
- Enclosing class:
- PartyManagementServiceOuterClass
public static interface PartyManagementServiceOuterClass.GetPartiesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getParties(int index)
The stable, unique identifier of the Daml parties.com.google.protobuf.ByteString
getPartiesBytes(int index)
The stable, unique identifier of the Daml parties.int
getPartiesCount()
The stable, unique identifier of the Daml parties.java.util.List<java.lang.String>
getPartiesList()
The stable, unique identifier of the Daml parties.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPartiesList
java.util.List<java.lang.String> getPartiesList()
The stable, unique identifier of the Daml parties. Must be valid PartyIdStrings (as described in ``value.proto``). Required
repeated string parties = 1 [json_name = "parties"];
- Returns:
- A list containing the parties.
-
getPartiesCount
int getPartiesCount()
The stable, unique identifier of the Daml parties. Must be valid PartyIdStrings (as described in ``value.proto``). Required
repeated string parties = 1 [json_name = "parties"];
- Returns:
- The count of parties.
-
getParties
java.lang.String getParties(int index)
The stable, unique identifier of the Daml parties. Must be valid PartyIdStrings (as described in ``value.proto``). Required
repeated string parties = 1 [json_name = "parties"];
- Parameters:
index
- The index of the element to return.- Returns:
- The parties at the given index.
-
getPartiesBytes
com.google.protobuf.ByteString getPartiesBytes(int index)
The stable, unique identifier of the Daml parties. Must be valid PartyIdStrings (as described in ``value.proto``). Required
repeated string parties = 1 [json_name = "parties"];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the parties at the given index.
-
-