corda / net.corda.testing.dsl / OutputStateLookup

OutputStateLookup

@DoNotImplement interface OutputStateLookup

This interface defines output state lookup by label. It is split from the interpreter interfaces so that outputs may be looked up both in ledger{..} and transaction{..} blocks.

Functions

retrieveOutputStateAndRef

Retrieves an output previously defined by TransactionDSLInterpreter.output with a label passed in.

abstract fun <S : ContractState> retrieveOutputStateAndRef(clazz: Class<S>, label: String): StateAndRef<S>

Inheritors

LedgerDSLInterpreter

This interface defines the bare bone functionality that a Ledger DSL interpreter should implement.

interface LedgerDSLInterpreter<out T : TransactionDSLInterpreter> : Verifies, OutputStateLookup

TestTransactionDSLInterpreter

This interpreter builds a transaction, and TransactionDSL.verifies that the resolved transaction is correct. Note that transactions corresponding to input states are not verified. Use LedgerDSL.verifies for that.

data class TestTransactionDSLInterpreter : TransactionDSLInterpreter, OutputStateLookup

TransactionDSLInterpreter

This interface defines the bare bone functionality that a Transaction DSL interpreter should implement.

interface TransactionDSLInterpreter : Verifies, OutputStateLookup