Uses of Record Class
com.bluebell.greenhouse.platform.models.api.dto.account.CreateUpdateAccountDTO
Packages that use CreateUpdateAccountDTO
Package
Description
Contains controllers for handling
Accounts.Contains the account orchestrators.
Contains the service layer for
Accounts.-
Uses of CreateUpdateAccountDTO in com.bluebell.greenhouse.planter.controllers.account
Methods in com.bluebell.greenhouse.planter.controllers.account with parameters of type CreateUpdateAccountDTOModifier 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. -
Uses of CreateUpdateAccountDTO in com.bluebell.greenhouse.planter.orchestrators.account
Methods in com.bluebell.greenhouse.planter.orchestrators.account with parameters of type CreateUpdateAccountDTOModifier and TypeMethodDescriptionAccountOrchestrator.createNewAccount(CreateUpdateAccountDTO data, PortfolioRequestContext context) Creates a newAccountunder an owned portfolio.AccountOrchestrator.updateAccount(AccountPortfolioRequestContext context, CreateUpdateAccountDTO data) Updates an ownedAccount. -
Uses of CreateUpdateAccountDTO in com.bluebell.greenhouse.radicle.services.account
Methods in com.bluebell.greenhouse.radicle.services.account with parameters of type CreateUpdateAccountDTOModifier and TypeMethodDescriptionAccountService.createNewAccount(CreateUpdateAccountDTO data, Portfolio portfolio) Creates a newAccountwith the given data.AccountService.updateAccount(OwnedAccountRef ref, CreateUpdateAccountDTO data, Portfolio portfolio) Updates the account a reference identifies.AccountService.updateAccount(Account account, CreateUpdateAccountDTO data, Portfolio portfolio) Updates an existingAccount.