mirror of
https://github.com/corda/corda.git
synced 2025-01-30 16:14:39 +00:00
ENT-11036: initiatedBy is now a list of CordaX500Names. (#7592)
This commit is contained in:
parent
d6b9134700
commit
72e5c4fed2
@ -56,7 +56,7 @@ class FlowRecoveryException(message: String, cause: Throwable? = null) : FlowExc
|
|||||||
@CordaSerializable
|
@CordaSerializable
|
||||||
data class FlowRecoveryQuery(
|
data class FlowRecoveryQuery(
|
||||||
val timeframe: FlowTimeWindow? = null,
|
val timeframe: FlowTimeWindow? = null,
|
||||||
val initiatedBy: CordaX500Name? = null,
|
val initiatedBy: List<CordaX500Name>? = null,
|
||||||
val counterParties: List<CordaX500Name>? = null) {
|
val counterParties: List<CordaX500Name>? = null) {
|
||||||
init {
|
init {
|
||||||
require(timeframe != null || initiatedBy != null || counterParties != null) {
|
require(timeframe != null || initiatedBy != null || counterParties != null) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user