Package com.daml.ledger.api.v1.admin
Interface PartyManagementServiceOuterClass.PartyDetailsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PartyManagementServiceOuterClass.PartyDetails
,PartyManagementServiceOuterClass.PartyDetails.Builder
- Enclosing class:
- PartyManagementServiceOuterClass
public static interface PartyManagementServiceOuterClass.PartyDetailsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDisplayName()
Human readable name associated with the party.com.google.protobuf.ByteString
getDisplayNameBytes()
Human readable name associated with the party.boolean
getIsLocal()
true if party is hosted by the backing participant.java.lang.String
getParty()
The stable unique identifier of a Daml party.com.google.protobuf.ByteString
getPartyBytes()
The stable unique identifier of a Daml party.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParty
java.lang.String getParty()
The stable unique identifier of a Daml party. Must be a valid PartyIdString (as described in ``value.proto``). Required
string party = 1 [json_name = "party"];
- Returns:
- The party.
-
getPartyBytes
com.google.protobuf.ByteString getPartyBytes()
The stable unique identifier of a Daml party. Must be a valid PartyIdString (as described in ``value.proto``). Required
string party = 1 [json_name = "party"];
- Returns:
- The bytes for party.
-
getDisplayName
java.lang.String getDisplayName()
Human readable name associated with the party. Caution, it might not be unique. Optional
string display_name = 2 [json_name = "displayName"];
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
Human readable name associated with the party. Caution, it might not be unique. Optional
string display_name = 2 [json_name = "displayName"];
- Returns:
- The bytes for displayName.
-
getIsLocal
boolean getIsLocal()
true if party is hosted by the backing participant. Required
bool is_local = 3 [json_name = "isLocal"];
- Returns:
- The isLocal.
-
-