corda / net.corda.core.identity / AnonymousParty

AnonymousParty

class AnonymousParty : Destination, AbstractParty

The AnonymousParty class contains enough information to uniquely identify a Party while excluding private information such as name. It is intended to represent a party on the distributed ledger.

Flow sessions

Anonymous parties can be used to communicate using the FlowLogic.initiateFlow method. Message routing is simply routing to the well-known Party the anonymous party belongs to. This mechanism assumes the party initiating the communication knows who the anonymous party is.

Constructors

<init>

AnonymousParty(owningKey: PublicKey)

The AnonymousParty class contains enough information to uniquely identify a Party while excluding private information such as name. It is intended to represent a party on the distributed ledger.

Inherited Properties

owningKey

val owningKey: PublicKey

Functions

nameOrNull

fun nameOrNull(): CordaX500Name?

ref

fun ref(bytes: OpaqueBytes): PartyAndReference

Build a reference to something being stored or issued by a party e.g. in a vault or (more likely) on their normal ledger.

toString

fun toString(): String

Inherited Functions

ref

fun ref(vararg bytes: Byte): PartyAndReference

Build a reference to something being stored or issued by a party e.g. in a vault or (more likely) on their normal ledger.

Extension Functions

contextLogger

fun Any.contextLogger(): <ERROR CLASS>

When called from a companion object, returns the logger for the enclosing class.