Uses of Record Class
com.bluebell.greenhouse.platform.models.api.dto.position.CreateUpdatePositionDTO
Packages that use CreateUpdatePositionDTO
Package
Description
Contains API controllers for position endpoints.
Contains the position orchestrators.
Contains the service layer for
Positions.-
Uses of CreateUpdatePositionDTO in com.bluebell.greenhouse.planter.controllers.position
Methods in com.bluebell.greenhouse.planter.controllers.position with parameters of type CreateUpdatePositionDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<PositionDTO> PositionApiController.postCreatePosition(@Valid CreateUpdatePositionDTO data, AccountRequestContext context) Creates a newPositionfor the given account number.org.springframework.http.ResponseEntity<PositionDTO> PositionApiController.putUpdatePosition(@Valid CreateUpdatePositionDTO data, PositionRequestContext context) Updates an existingPosition. -
Uses of CreateUpdatePositionDTO in com.bluebell.greenhouse.planter.orchestrators.position
Methods in com.bluebell.greenhouse.planter.orchestrators.position with parameters of type CreateUpdatePositionDTOModifier and TypeMethodDescriptionPositionOrchestrator.createPosition(AccountRequestContext context, CreateUpdatePositionDTO data) Creates aPositionon an owned account.PositionOrchestrator.updatePosition(PositionRequestContext context, CreateUpdatePositionDTO data) Updates an ownedPosition. -
Uses of CreateUpdatePositionDTO in com.bluebell.greenhouse.radicle.services.position
Methods in com.bluebell.greenhouse.radicle.services.position with parameters of type CreateUpdatePositionDTOModifier and TypeMethodDescriptionPositionService.createNewPosition(CreateUpdatePositionDTO data, Account account) Creates a newPosition.PositionWriteService.createPosition(CreateUpdatePositionDTO data, Account account) Creates a position and returns the converted result.PositionService.updatePosition(OwnedPositionRef ref, CreateUpdatePositionDTO data, Account account) Updates the position a reference identifies.PositionService.updatePosition(Position position, CreateUpdatePositionDTO data, Account account) Updates an existingPosition.PositionWriteService.updatePosition(OwnedPositionRef ref, CreateUpdatePositionDTO data, Account account) Updates the position a reference identifies and returns the converted result.