Uses of Class
com.bluebell.greenhouse.platform.models.api.dto.account.AccountDTO
Packages that use AccountDTO
Package
Description
Contains controllers for handling
Accounts.Contains converters that convert
Accounts into AccountDTOs.Contains the account orchestrators.
-
Uses of AccountDTO in com.bluebell.greenhouse.planter.controllers.account
Methods in com.bluebell.greenhouse.planter.controllers.account that return types with arguments of type AccountDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AccountDTO> AccountApiController.postCreateNewAccount(@Valid CreateUpdateAccountDTO data, PortfolioRequestContext context) Creates a newAccount.org.springframework.http.ResponseEntity<AccountDTO> AccountApiController.putUpdateAccount(AccountPortfolioRequestContext context, @Valid CreateUpdateAccountDTO data) Returns an updatedAccount.org.springframework.http.ResponseEntity<AccountDTO> AccountApiController.putUpdateAccountStrategy(AccountRequestContext context, @Valid UpdateAccountStrategyDTO data) Assigns or removes a strategy on an existingAccount. -
Uses of AccountDTO in com.bluebell.greenhouse.planter.converters.account
Subclasses with type arguments of type AccountDTO in com.bluebell.greenhouse.planter.converters.accountMethods in com.bluebell.greenhouse.planter.converters.account that return AccountDTOModifier and TypeMethodDescriptionAccountDTOConverter.convert(Account account, AccountLedgerSummary summary) Converts an account using ledger figures already resolved by its caller.protected AccountDTOAccountDTOConverter.convertNonNull(Account entity) Converts aAccountinto aAccountDTO.protected AccountDTOAccountDTOConverter.createEmptyDTO()Creates the empty DTO returned for a null source.Methods in com.bluebell.greenhouse.planter.converters.account that return types with arguments of type AccountDTOModifier and TypeMethodDescriptionAccountDTOConverter.convertAll(Collection<Account> entities) Converts a page ofAccounts, resolving every ledger figure in one batch.AccountDTOConverter.convertAll(Collection<Account> entities, Map<Long, AccountLedgerSummary> summaries) Converts accounts using ledger figures an enclosing conversion already resolved. -
Uses of AccountDTO in com.bluebell.greenhouse.planter.orchestrators.account
Methods in com.bluebell.greenhouse.planter.orchestrators.account that return AccountDTOModifier and TypeMethodDescriptionAccountOrchestrator.createNewAccount(CreateUpdateAccountDTO data, PortfolioRequestContext context) Creates a newAccountunder an owned portfolio.AccountOrchestrator.updateAccount(AccountPortfolioRequestContext context, CreateUpdateAccountDTO data) Updates an ownedAccount.AccountOrchestrator.updateAccountStrategy(AccountRequestContext context, UpdateAccountStrategyDTO data) Updates the strategy assigned to an ownedAccount.