class SetLifecycle<P> : ConcreteClause<State<P>, Commands, Issued<Terms<P>>>
Obligation-specific clause for changing the lifecycle of one or more states.
<init> |
SetLifecycle() Obligation-specific clause for changing the lifecycle of one or more states. |
requiredCommands |
val requiredCommands: Set<Class<out CommandData>> Determine whether this clause runs or not |
toString |
fun toString(): String |
verify |
fun verify(tx: TransactionForContract, inputs: List<State<P>>, outputs: List<State<P>>, commands: List<AuthenticatedObject<Commands>>, groupingKey: Issued<Terms<P>>?): Set<Commands> Verify the transaction matches the conditions from this clause. For example, a "no zero amount output" clause would check each of the output states that it applies to, looking for a zero amount, and throw IllegalStateException if any matched. |