FlowContextProperties

Context properties of a Flow are key value pairs of Strings. They are comprised of two sets of properties, those set by the platform when a Flow is started, and those which are added by the CorDapp developer during the execution of their flow. The latter set are referred to as user context properties. All context properties are immutable once set.

Properties

Link copied to clipboard
A constant containing the Corda reserved prefix.

Functions

Link copied to clipboard
@Nullable
abstract fun get(@NotNull key: String): String
Gets a value from the context property store.
Link copied to clipboard
abstract fun put(@NotNull key: String, @NotNull value: String)
Puts a user value into the context property store.