Uses of Record Class
com.bluebell.greenhouse.platform.models.api.dto.symbol.CreateUpdateSymbolDTO
Packages that use CreateUpdateSymbolDTO
Package
Description
Contains controllers for handling symbols and equities.
Contains the symbol orchestrators.
Contains the service layer for
Symbols.-
Uses of CreateUpdateSymbolDTO in com.bluebell.greenhouse.planter.controllers.symbol
Methods in com.bluebell.greenhouse.planter.controllers.symbol with parameters of type CreateUpdateSymbolDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<SymbolDTO> SymbolApiController.postCreateNewSymbol(@Valid CreateUpdateSymbolDTO data) Creates a newSymbol.org.springframework.http.ResponseEntity<SymbolDTO> SymbolApiController.putUpdateSymbol(@Valid CreateUpdateSymbolDTO data, String symbolId) Updates an existingSymbol. -
Uses of CreateUpdateSymbolDTO in com.bluebell.greenhouse.planter.orchestrators.symbol
Methods in com.bluebell.greenhouse.planter.orchestrators.symbol with parameters of type CreateUpdateSymbolDTOModifier and TypeMethodDescriptionSymbolOrchestrator.createNewSymbol(CreateUpdateSymbolDTO data) Creates a newSymbol.SymbolOrchestrator.updateSymbol(CreateUpdateSymbolDTO data, String symbolId) Updates theSymbolmatching the given identifier. -
Uses of CreateUpdateSymbolDTO in com.bluebell.greenhouse.radicle.services.symbol
Methods in com.bluebell.greenhouse.radicle.services.symbol with parameters of type CreateUpdateSymbolDTOModifier and TypeMethodDescriptionSymbolService.createNewSymbol(CreateUpdateSymbolDTO data) Creates a newSymbolwith the given data.SymbolService.updateSymbol(Symbol symbol, CreateUpdateSymbolDTO data) Updates an existingSymbol.