Uses of Annotation Interface
com.bluebell.greenhouse.planter.annotations.strategy.StrategyNotFoundApiResponse
Packages that use StrategyNotFoundApiResponse
Package
Description
Contains controllers for handling
Accounts.Contains API controllers related to
Strategy and their implementation
artifacts.-
Uses of StrategyNotFoundApiResponse in com.bluebell.greenhouse.planter.controllers.account
Methods in com.bluebell.greenhouse.planter.controllers.account with annotations of type StrategyNotFoundApiResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AccountDTO> AccountApiController.putUpdateAccountStrategy(AccountRequestContext context, @Valid UpdateAccountStrategyDTO data) Assigns or removes a strategy on an existingAccount. -
Uses of StrategyNotFoundApiResponse in com.bluebell.greenhouse.planter.controllers.strategy
Methods in com.bluebell.greenhouse.planter.controllers.strategy with annotations of type StrategyNotFoundApiResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Void> StrategyApiController.deleteStrategy(String strategyUid) Deletes aStrategy.org.springframework.http.ResponseEntity<StrategyDTO> StrategyApiController.getStrategy(String strategyUid, String referenceCode) Returns aResponseEntitycontaining aStrategyDTO.org.springframework.http.ResponseEntity<StrategyImplementationDTO> StrategyImplementationApiController.postCreateNewStrategyImplementation(@Valid CreateUpdateStrategyImplementationDTO data) Creates a newStrategyImplementation.org.springframework.http.ResponseEntity<StrategyDTO> StrategyApiController.putUpdateStrategy(String strategyUid, @Valid CreateUpdateStrategyDTO data) Updates an existingStrategy.org.springframework.http.ResponseEntity<StrategyDTO> StrategyApiController.putUpdateStrategyAccountAssignments(String strategyUid, @Valid UpdateStrategyAccountsDTO data, AuthenticatedUserRef userRef) Synchronizes the accounts assigned to an existingStrategy.org.springframework.http.ResponseEntity<StrategyImplementationDTO> StrategyImplementationApiController.putUpdateStrategyImplementation(String strategyImplementationUid, @Valid CreateUpdateStrategyImplementationDTO data) Updates an existingStrategyImplementation.org.springframework.http.ResponseEntity<PaginatedStrategyImplementationDTO> StrategyImplementationApiController.searchStrategyImplementations(StrategyImplementationSearchRequest searchRequest) Returns aResponseEntitycontaining matchingStrategyImplementationDTOs.