Uses of Class
com.bluebell.greenhouse.platform.models.api.dto.transaction.TransactionDTO
Packages that use TransactionDTO
Package
Description
Contains controllers for handling
Users and securing api endpoints.Contains controllers for handling
Transactions.Contains converters that convert
Transactions into TransactionDTOs.Contains the security orchestrators.
Contains the transaction orchestrators.
Contains classes that implement DTO representations of
Transaction-related entities.Contains records used with
Accounts.-
Uses of TransactionDTO in com.bluebell.greenhouse.planter.controllers.security
Methods in com.bluebell.greenhouse.planter.controllers.security that return types with arguments of type TransactionDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<TransactionDTO>> UserApiController.getRecentTransactions(int count, PortfolioRequestContext context) -
Uses of TransactionDTO in com.bluebell.greenhouse.planter.controllers.transaction
Methods in com.bluebell.greenhouse.planter.controllers.transaction that return types with arguments of type TransactionDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<TransactionDTO>> TransactionApiController.getRecentTransactionsForAccount(AccountRequestContext context) org.springframework.http.ResponseEntity<TransactionDTO> TransactionApiController.getTransactionForNumberAndAccount(TransactionRequestContext context) Returns aTransactionfor the given name and account.org.springframework.http.ResponseEntity<TransactionDTO> TransactionApiController.postCreateNewTransaction(@Valid CreateUpdateTransactionDTO data, AccountRequestContext context) Creates aTransaction.org.springframework.http.ResponseEntity<List<TransactionDTO>> TransactionApiController.putAssignTransactionsToPosition(@Valid AssignTransactionsToPositionDTO data, AccountRequestContext context) Assigns multiple account transactions to a position.org.springframework.http.ResponseEntity<TransactionDTO> TransactionApiController.putUpdateTransaction(TransactionRequestContext context, @Valid CreateUpdateTransactionDTO data) Returns an updatedTransaction. -
Uses of TransactionDTO in com.bluebell.greenhouse.planter.converters.transaction
Subclasses with type arguments of type TransactionDTO in com.bluebell.greenhouse.planter.converters.transactionMethods in com.bluebell.greenhouse.planter.converters.transaction that return TransactionDTOModifier and TypeMethodDescriptionprotected TransactionDTOTransactionDTOConverter.convertNonNull(Transaction entity) Converts aTransactioninto aTransactionDTO.protected TransactionDTOTransactionDTOConverter.createEmptyDTO()Creates the empty DTO returned for a null source. -
Uses of TransactionDTO in com.bluebell.greenhouse.planter.orchestrators.security
Methods in com.bluebell.greenhouse.planter.orchestrators.security that return types with arguments of type TransactionDTOModifier and TypeMethodDescriptionUserOrchestrator.getRecentTransactions(PortfolioRequestContext context, int count) Obtains the most recentTransactions across an owned portfolio's active accounts. -
Uses of TransactionDTO in com.bluebell.greenhouse.planter.orchestrators.transaction
Methods in com.bluebell.greenhouse.planter.orchestrators.transaction that return TransactionDTOModifier and TypeMethodDescriptionTransactionOrchestrator.createNewTransaction(AccountRequestContext context, CreateUpdateTransactionDTO data) Creates aTransactionon an owned account and refreshes it.TransactionOrchestrator.getTransactionForNumberAndAccount(TransactionRequestContext context) Obtains one ownedTransaction.TransactionOrchestrator.updateTransaction(TransactionRequestContext context, CreateUpdateTransactionDTO data) Updates an ownedTransactionand refreshes its account.Methods in com.bluebell.greenhouse.planter.orchestrators.transaction that return types with arguments of type TransactionDTOModifier and TypeMethodDescriptionTransactionOrchestrator.assignTransactionsToPosition(AccountRequestContext context, AssignTransactionsToPositionDTO data) AssignsTransactions to a position and refreshes the account.TransactionOrchestrator.getRecentTransactionsForAccount(AccountRequestContext context) Obtains the most recentTransactions on an owned account. -
Uses of TransactionDTO in com.bluebell.greenhouse.platform.models.api.dto.transaction
Subclasses with type arguments of type TransactionDTO in com.bluebell.greenhouse.platform.models.api.dto.transactionMethod parameters in com.bluebell.greenhouse.platform.models.api.dto.transaction with type arguments of type TransactionDTOModifier and TypeMethodDescriptionstatic PaginatedTransactionDTOPaginatedTransactionDTO.from(PaginatedEntityDTO<TransactionDTO> source) Narrows a generic page into its typed equivalent. -
Uses of TransactionDTO in com.bluebell.greenhouse.platform.models.core.nonentities.records.account
Methods in com.bluebell.greenhouse.platform.models.core.nonentities.records.account that return types with arguments of type TransactionDTOModifier and TypeMethodDescriptionAccountDetails.recentTransactions()Returns the value of therecentTransactionsrecord component.