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 at allocation time.com.google.protobuf.ByteString
getDisplayNameBytes()
Human readable name associated with the party at allocation time.boolean
getIsLocal()
true if party is hosted by the participant.ObjectMetaOuterClass.ObjectMeta
getLocalMetadata()
Participant-local metadata of this party.ObjectMetaOuterClass.ObjectMetaOrBuilder
getLocalMetadataOrBuilder()
Participant-local metadata of this party.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.boolean
hasLocalMetadata()
Participant-local metadata of this 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 at allocation time. Caution, it might not be unique. Use of this field is discouraged. Use the `local_metadata` field instead. Optional
string display_name = 2 [json_name = "displayName"];
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
Human readable name associated with the party at allocation time. Caution, it might not be unique. Use of this field is discouraged. Use the `local_metadata` field instead. Optional
string display_name = 2 [json_name = "displayName"];
- Returns:
- The bytes for displayName.
-
getIsLocal
boolean getIsLocal()
true if party is hosted by the participant. Optional
bool is_local = 3 [json_name = "isLocal"];
- Returns:
- The isLocal.
-
hasLocalMetadata
boolean hasLocalMetadata()
Participant-local metadata of this party. Optional, Modifiable
.com.daml.ledger.api.v1.admin.ObjectMeta local_metadata = 4 [json_name = "localMetadata"];
- Returns:
- Whether the localMetadata field is set.
-
getLocalMetadata
ObjectMetaOuterClass.ObjectMeta getLocalMetadata()
Participant-local metadata of this party. Optional, Modifiable
.com.daml.ledger.api.v1.admin.ObjectMeta local_metadata = 4 [json_name = "localMetadata"];
- Returns:
- The localMetadata.
-
getLocalMetadataOrBuilder
ObjectMetaOuterClass.ObjectMetaOrBuilder getLocalMetadataOrBuilder()
Participant-local metadata of this party. Optional, Modifiable
.com.daml.ledger.api.v1.admin.ObjectMeta local_metadata = 4 [json_name = "localMetadata"];
-
-