Interface ChangeTransactionStateChange

All Superinterfaces:
Change
All Known Implementing Classes:
ChangeTransactionStateChangeImpl

public interface ChangeTransactionStateChange extends Change

Change triggered by the Change TransactionState update action.


Example to create an instance using the builder pattern

     ChangeTransactionStateChange changeTransactionStateChange = ChangeTransactionStateChange.builder()
             .change("{change}")
             .previousValue(TransactionState.INITIAL)
             .nextValue(TransactionState.INITIAL)
             .transaction(transactionBuilder -> transactionBuilder)
             .build()