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
getIdentityProviderId()
The id of the ``Identity Provider`` whose parties should be retrieved.com.google.protobuf.ByteString
getIdentityProviderIdBytes()
The id of the ``Identity Provider`` whose parties should be retrieved.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.
-
getIdentityProviderId
java.lang.String getIdentityProviderId()
The id of the ``Identity Provider`` whose parties should be retrieved. Optional, if not set, assume the party is managed by the default identity provider or party is not hosted by the participant.
string identity_provider_id = 2 [json_name = "identityProviderId"];
- Returns:
- The identityProviderId.
-
getIdentityProviderIdBytes
com.google.protobuf.ByteString getIdentityProviderIdBytes()
The id of the ``Identity Provider`` whose parties should be retrieved. Optional, if not set, assume the party is managed by the default identity provider or party is not hosted by the participant.
string identity_provider_id = 2 [json_name = "identityProviderId"];
- Returns:
- The bytes for identityProviderId.
-
-