Uses of Annotation Interface
com.bluebell.greenhouse.planter.annotations.portfolio.PortfolioNotFoundApiResponse
Packages that use PortfolioNotFoundApiResponse
Package
Description
Contains controllers for handling
Accounts.Contains controllers for handling
Portfolios and portfolio summary
operations.Contains API controllers for position endpoints.
Contains controllers for handling
Users and securing api endpoints.Contains controllers for handling
Transactions.-
Uses of PortfolioNotFoundApiResponse in com.bluebell.greenhouse.planter.controllers.account
Methods in com.bluebell.greenhouse.planter.controllers.account with annotations of type PortfolioNotFoundApiResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<BalancePerformanceReportDTO> BalancePerformanceApiController.getPortfolioBalancePerformance(PortfolioRequestContext context, BalancePerformanceRequest reportRequest) Returns a balance-performance report for one owned portfolio.org.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<Integer> AccountApiController.putUpdateAccountPortfolioAssignments(@Valid UpdateAccountPortfolioAssignmentsDTO data, jakarta.servlet.http.HttpServletRequest request) Moves accounts between portfolios owned by the current user. -
Uses of PortfolioNotFoundApiResponse in com.bluebell.greenhouse.planter.controllers.portfolio
Methods in com.bluebell.greenhouse.planter.controllers.portfolio with annotations of type PortfolioNotFoundApiResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Void> PortfolioApiController.deletePortfolio(PortfolioRequestContext context) Deletes anPortfoliowith the matching number.org.springframework.http.ResponseEntity<PortfolioDTO> PortfolioApiController.getPortfolioForPortfolioNumber(PortfolioRequestContext context) Returns aResponseEntitycontaining aPortfolioDTO.org.springframework.http.ResponseEntity<org.springframework.core.io.ByteArrayResource> PortfolioApiController.getPortfolioReport(PortfolioRequestContext context) Generates a zip archive containing account reports for all accounts in the given portfolio.org.springframework.http.ResponseEntity<PortfolioSummary> PortfolioSummaryApiController.getPortfolioSummary(PortfolioRequestContext context, int lookBackDays) Returns aResponseEntitycontaining aPortfolioSummary.org.springframework.http.ResponseEntity<PortfolioDTO> PortfolioApiController.putUpdatePortfolio(@Valid CreateUpdatePortfolioDTO data, PortfolioRequestContext context) Returns an updatedPortfolio. -
Uses of PortfolioNotFoundApiResponse in com.bluebell.greenhouse.planter.controllers.position
Methods in com.bluebell.greenhouse.planter.controllers.position with annotations of type PortfolioNotFoundApiResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<PositionLog> PositionRecordApiController.getPositionLog(PortfolioRequestContext context, PositionLogRequest logRequest) Returns aPositionLog. -
Uses of PortfolioNotFoundApiResponse in com.bluebell.greenhouse.planter.controllers.security
Methods in com.bluebell.greenhouse.planter.controllers.security with annotations of type PortfolioNotFoundApiResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<TransactionDTO>> UserApiController.getRecentTransactions(int count, PortfolioRequestContext context) -
Uses of PortfolioNotFoundApiResponse in com.bluebell.greenhouse.planter.controllers.transaction
Methods in com.bluebell.greenhouse.planter.controllers.transaction with annotations of type PortfolioNotFoundApiResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<TransactionLog> TransactionRecordApiController.getTransactionLog(PortfolioRequestContext context, TransactionLogRequest logRequest) Returns aTransactionLog.