Uses of Class
com.bluebell.greenhouse.platform.models.api.dto.portfolio.PortfolioDTO
Packages that use PortfolioDTO
Package
Description
Contains controllers for handling
Portfolios and portfolio summary
operations.Contains converters that convert
Portfolios into PortfolioDTOs.Contains the portfolio orchestrators.
Contains classes that implement DTO representations of
User-related entities.-
Uses of PortfolioDTO in com.bluebell.greenhouse.planter.controllers.portfolio
Methods in com.bluebell.greenhouse.planter.controllers.portfolio that return types with arguments of type PortfolioDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<PortfolioDTO> PortfolioApiController.getPortfolioForPortfolioNumber(PortfolioRequestContext context) Returns aResponseEntitycontaining aPortfolioDTO.org.springframework.http.ResponseEntity<PortfolioDTO> PortfolioApiController.postCreateNewPortfolio(@Valid CreateUpdatePortfolioDTO data, AuthenticatedUserRef userRef) Returns aPortfolio.org.springframework.http.ResponseEntity<PortfolioDTO> PortfolioApiController.putUpdatePortfolio(@Valid CreateUpdatePortfolioDTO data, PortfolioRequestContext context) Returns an updatedPortfolio. -
Uses of PortfolioDTO in com.bluebell.greenhouse.planter.converters.portfolio
Subclasses with type arguments of type PortfolioDTO in com.bluebell.greenhouse.planter.converters.portfolioMethods in com.bluebell.greenhouse.planter.converters.portfolio that return PortfolioDTOModifier and TypeMethodDescriptionprotected PortfolioDTOPortfolioDTOConverter.convertNonNull(Portfolio entity) Converts aPortfoliointo aPortfolioDTO.protected PortfolioDTOPortfolioDTOConverter.createEmptyDTO()Creates the empty DTO returned for a null source.Methods in com.bluebell.greenhouse.planter.converters.portfolio that return types with arguments of type PortfolioDTOModifier and TypeMethodDescriptionPortfolioDTOConverter.convertAll(Collection<Portfolio> entities) Converts a page ofPortfolios, resolving every account's ledger figures in one batch.PortfolioDTOConverter.convertAll(Collection<Portfolio> entities, Map<Long, AccountLedgerSummary> summaries) Converts portfolios using ledger figures an enclosing conversion already resolved. -
Uses of PortfolioDTO in com.bluebell.greenhouse.planter.orchestrators.portfolio
Methods in com.bluebell.greenhouse.planter.orchestrators.portfolio that return PortfolioDTOModifier and TypeMethodDescriptionPortfolioOrchestrator.createNewPortfolio(CreateUpdatePortfolioDTO data, AuthenticatedUserRef userRef) Creates a newPortfoliofor the current user.PortfolioOrchestrator.getPortfolioForPortfolioNumber(PortfolioRequestContext context) Obtains an ownedPortfolio.PortfolioOrchestrator.updatePortfolio(PortfolioRequestContext context, CreateUpdatePortfolioDTO data) Updates an ownedPortfolio. -
Uses of PortfolioDTO in com.bluebell.greenhouse.platform.models.api.dto.security
Methods in com.bluebell.greenhouse.platform.models.api.dto.security that return types with arguments of type PortfolioDTOModifier and TypeMethodDescriptionUserDTO.getActivePortfolios()Returns a list of portfolios that are marked as active.