Uses of Record Class
com.bluebell.greenhouse.platform.models.api.dto.transaction.CreateUpdateTransactionDTO
Packages that use CreateUpdateTransactionDTO
Package
Description
Contains controllers for handling
Transactions.Contains the transaction orchestrators.
Contains the service layer for
Transactions.-
Uses of CreateUpdateTransactionDTO in com.bluebell.greenhouse.planter.controllers.transaction
Methods in com.bluebell.greenhouse.planter.controllers.transaction with parameters of type CreateUpdateTransactionDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<TransactionDTO> TransactionApiController.postCreateNewTransaction(@Valid CreateUpdateTransactionDTO data, AccountRequestContext context) Creates aTransaction.org.springframework.http.ResponseEntity<TransactionDTO> TransactionApiController.putUpdateTransaction(TransactionRequestContext context, @Valid CreateUpdateTransactionDTO data) Returns an updatedTransaction. -
Uses of CreateUpdateTransactionDTO in com.bluebell.greenhouse.planter.orchestrators.transaction
Methods in com.bluebell.greenhouse.planter.orchestrators.transaction with parameters of type CreateUpdateTransactionDTOModifier and TypeMethodDescriptionTransactionOrchestrator.createNewTransaction(AccountRequestContext context, CreateUpdateTransactionDTO data) Creates aTransactionon an owned account and refreshes it.TransactionOrchestrator.updateTransaction(TransactionRequestContext context, CreateUpdateTransactionDTO data) Updates an ownedTransactionand refreshes its account. -
Uses of CreateUpdateTransactionDTO in com.bluebell.greenhouse.radicle.services.transaction
Methods in com.bluebell.greenhouse.radicle.services.transaction with parameters of type CreateUpdateTransactionDTOModifier and TypeMethodDescriptionTransactionService.createNewTransaction(CreateUpdateTransactionDTO data, Account account) Creates a newTransactionwith the given data.TransactionService.updateTransaction(OwnedTransactionRef ref, CreateUpdateTransactionDTO data, Account account) Updates the transaction a reference identifies.TransactionService.updateTransaction(Transaction transaction, CreateUpdateTransactionDTO data, Account account) Updates an existingTransaction.