Uses of Record Class
com.bluebell.greenhouse.platform.models.api.dto.strategy.CreateUpdateStrategyDTO
Packages that use CreateUpdateStrategyDTO
Package
Description
Contains API controllers related to
Strategy and their implementation
artifacts.Contains the strategy orchestrators.
Contains the service-layer for
Strategy entities and
implementation artifacts.Contains validation helpers for
Strategy and
strategy-implementation flows.-
Uses of CreateUpdateStrategyDTO in com.bluebell.greenhouse.planter.controllers.strategy
Methods in com.bluebell.greenhouse.planter.controllers.strategy with parameters of type CreateUpdateStrategyDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<StrategyDTO> StrategyApiController.postCreateNewStrategy(@Valid CreateUpdateStrategyDTO data) Creates a newStrategy.org.springframework.http.ResponseEntity<StrategyDTO> StrategyApiController.putUpdateStrategy(String strategyUid, @Valid CreateUpdateStrategyDTO data) Updates an existingStrategy. -
Uses of CreateUpdateStrategyDTO in com.bluebell.greenhouse.planter.orchestrators.strategy
Methods in com.bluebell.greenhouse.planter.orchestrators.strategy with parameters of type CreateUpdateStrategyDTOModifier and TypeMethodDescriptionStrategyOrchestrator.createNewStrategy(CreateUpdateStrategyDTO data) Creates a newStrategy.StrategyOrchestrator.updateStrategy(String strategyUid, CreateUpdateStrategyDTO data) Updates theStrategymatching the given uid. -
Uses of CreateUpdateStrategyDTO in com.bluebell.greenhouse.radicle.services.strategy
Methods in com.bluebell.greenhouse.radicle.services.strategy with parameters of type CreateUpdateStrategyDTOModifier and TypeMethodDescriptionStrategyService.createNewStrategy(CreateUpdateStrategyDTO data) Creates a newStrategy.StrategyService.updateStrategy(Strategy strategy, CreateUpdateStrategyDTO data) Updates an existingStrategy. -
Uses of CreateUpdateStrategyDTO in com.bluebell.greenhouse.radicle.validation.strategy
Methods in com.bluebell.greenhouse.radicle.validation.strategy with parameters of type CreateUpdateStrategyDTOModifier and TypeMethodDescriptionstatic voidStrategyValidator.validateStrategyPayload(CreateUpdateStrategyDTO data, String errorMessage) Validates strategy create/update payload requirements.