Uses of Record Class
com.bluebell.greenhouse.platform.models.api.dto.watchlist.CreateUpdateWatchlistDTO
Packages that use CreateUpdateWatchlistDTO
Package
Description
Contains API controllers for the
Watchlist entity.Contains the watchlist orchestrators.
Contains the service-layer for
Watchlist.-
Uses of CreateUpdateWatchlistDTO in com.bluebell.greenhouse.planter.controllers.watchlist
Methods in com.bluebell.greenhouse.planter.controllers.watchlist with parameters of type CreateUpdateWatchlistDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<WatchlistDTO> WatchlistApiController.postCreateWatchlist(@Valid CreateUpdateWatchlistDTO data, AuthenticatedUserRef userRef) Creates a newWatchlist.org.springframework.http.ResponseEntity<WatchlistDTO> WatchlistApiController.putUpdateWatchlist(@Valid CreateUpdateWatchlistDTO data, WatchlistRequestContext context) Updates an existingWatchlist. -
Uses of CreateUpdateWatchlistDTO in com.bluebell.greenhouse.planter.orchestrators.watchlist
Methods in com.bluebell.greenhouse.planter.orchestrators.watchlist with parameters of type CreateUpdateWatchlistDTOModifier and TypeMethodDescriptionWatchlistOrchestrator.createWatchlist(CreateUpdateWatchlistDTO data, AuthenticatedUserRef userRef) Creates aWatchlistfor the current user.WatchlistOrchestrator.updateWatchlist(CreateUpdateWatchlistDTO data, WatchlistRequestContext context) Updates an ownedWatchlist. -
Uses of CreateUpdateWatchlistDTO in com.bluebell.greenhouse.radicle.services.watchlist
Methods in com.bluebell.greenhouse.radicle.services.watchlist with parameters of type CreateUpdateWatchlistDTOModifier and TypeMethodDescriptionWatchlistService.createWatchlist(CreateUpdateWatchlistDTO data, User user) Creates a newWatchlist.WatchlistService.updateWatchlist(Watchlist watchlist, CreateUpdateWatchlistDTO data, User user) Updates an existingWatchlist.