Packages

package topology

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Package Members

  1. package admin
  2. package client
  3. package processing
  4. package store
  5. package transaction

Type Members

  1. sealed trait AuthenticatedMember extends Member
  2. sealed trait AuthenticatedMemberCode extends KeyOwnerCode
  3. case class DomainId(uid: UniqueIdentifier) extends NodeIdentity with Product with Serializable
  4. sealed trait DomainMember extends AuthenticatedMember
  5. case class DomainTopologyManagerId(uid: UniqueIdentifier) extends DomainMember with Product with Serializable

    The domain topology manager id

    The domain topology manager id

    The domain manager is the topology manager of the domain. The read side of the domain manager is the IdentityProvidingService.

  6. final case class Identifier extends LengthLimitedStringWrapper with PrettyPrinting with Product with Serializable

    An identifier such as a random or a readable string

  7. sealed trait Identity extends Product with Serializable with PrettyPrinting

    Top level trait representing an identity within the system

  8. case class KeyCollection(signingKeys: Seq[SigningPublicKey], encryptionKeys: Seq[EncryptionPublicKey]) extends Product with Serializable
  9. sealed trait KeyOwner extends Identity

    An identity within the system that owns a key

  10. sealed trait KeyOwnerCode extends AnyRef
  11. class LegalIdentityInit extends AnyRef
  12. case class MediatorId(uid: UniqueIdentifier) extends DomainMember with NodeIdentity with Product with Serializable
  13. sealed trait Member extends KeyOwner with Product with Serializable

    A member in a domain such as a participant and or domain entities

    A member in a domain such as a participant and or domain entities

    A member can be addressed and talked to on the transaction level through the sequencer. Therefore every member is a KeyOwner. And the sequencer is not a member, as he is one level below, dealing with messages.

  14. final case class Namespace(fingerprint: Fingerprint) extends PrettyPrinting with Product with Serializable

    A namespace spanned by the fingerprint of a pub-key

    A namespace spanned by the fingerprint of a pub-key

    This is based on the assumption that the fingerprint is unique to the public-key

  15. case class NodeId(identity: UniqueIdentifier) extends Product with Serializable
  16. sealed trait NodeIdentity extends Identity
  17. case class ParticipantId(uid: UniqueIdentifier) extends AuthenticatedMember with NodeIdentity with Product with Serializable

    A participant identifier

  18. case class PartyId(uid: UniqueIdentifier) extends Identity with Product with Serializable

    A party identifier based on a unique identifier

  19. case class SequencerId(uid: UniqueIdentifier) extends DomainMember with NodeIdentity with Product with Serializable
  20. abstract class TopologyManager[E <: CantonError] extends NamedLogging with FlagCloseableAsync
  21. sealed trait TopologyManagerError extends CantonError
  22. case class UnauthenticatedMemberId(uid: UniqueIdentifier) extends Member with Product with Serializable
  23. final case class UniqueIdentifier(id: Identifier, namespace: Namespace) extends PrettyPrinting with Product with Serializable

    a unique identifier within a namespace Based on the Ledger API PartyIds/LedgerStrings being limited to 255 characters, we allocate - 64 + 4 characters to the namespace/fingerprint (essentially SHA256 with extra bytes), - 2 characters as delimiters, and - the last 185 characters for the Identifier.

Value Members

  1. object DomainId extends Serializable
  2. object DomainMember extends Serializable
  3. object DomainTopologyManagerId extends Serializable
  4. object Identifier extends Serializable
  5. object KeyCollection extends Serializable
  6. object KeyOwner extends Serializable
  7. object KeyOwnerCode
  8. object MediatorId extends Serializable
  9. object Member extends Serializable
  10. object Namespace extends Serializable
  11. object ParticipantId extends Serializable
  12. object PartyId extends Serializable
  13. object SafeSimpleString

    utility class to ensure that strings conform to LF specification minus our internal delimiter

  14. object SequencerId extends Serializable
  15. object TopologyManagerError extends TopologyManagerErrorGroup
  16. object UnauthenticatedMemberId extends Serializable
  17. object UniqueIdentifier extends Serializable

Ungrouped