Uses of Class
com.bluebell.greenhouse.platform.models.api.dto.notification.RecurringNotificationDTO
Packages that use RecurringNotificationDTO
Package
Description
Contains controllers for handling
RecurringNotifications.Contains converters that convert
RecurringNotifications into
RecurringNotificationDTOs.Contains the notification orchestrators.
-
Uses of RecurringNotificationDTO in com.bluebell.greenhouse.planter.controllers.notification
Methods in com.bluebell.greenhouse.planter.controllers.notification that return types with arguments of type RecurringNotificationDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<RecurringNotificationDTO> RecurringNotificationApiController.getRecurringNotificationByType(RecurringNotificationRequestContext context) Returns the current user'sRecurringNotificationfor the given type.org.springframework.http.ResponseEntity<List<RecurringNotificationDTO>> RecurringNotificationApiController.getRecurringNotificationsForCurrentUser(AuthenticatedUserRef userRef) Returns the current user'sRecurringNotifications.org.springframework.http.ResponseEntity<RecurringNotificationDTO> RecurringNotificationApiController.postCreateRecurringNotification(@Valid CreateUpdateRecurringNotificationDTO data, AuthenticatedUserRef userRef) Creates aRecurringNotification.org.springframework.http.ResponseEntity<RecurringNotificationDTO> RecurringNotificationApiController.putUpdateRecurringNotification(@Valid CreateUpdateRecurringNotificationDTO data, RecurringNotificationRequestContext context) Updates an existingRecurringNotification. -
Uses of RecurringNotificationDTO in com.bluebell.greenhouse.planter.converters.notification
Subclasses with type arguments of type RecurringNotificationDTO in com.bluebell.greenhouse.planter.converters.notificationModifier and TypeClassDescriptionclassConvertsRecurringNotifications intoRecurringNotificationDTOs.Methods in com.bluebell.greenhouse.planter.converters.notification that return RecurringNotificationDTOModifier and TypeMethodDescriptionprotected RecurringNotificationDTORecurringNotificationDTOConverter.convertNonNull(RecurringNotification entity) Converts aRecurringNotificationinto aRecurringNotificationDTO.protected RecurringNotificationDTORecurringNotificationDTOConverter.createEmptyDTO()Creates the empty DTO returned for a null source. -
Uses of RecurringNotificationDTO in com.bluebell.greenhouse.planter.orchestrators.notification
Methods in com.bluebell.greenhouse.planter.orchestrators.notification that return RecurringNotificationDTOModifier and TypeMethodDescriptionRecurringNotificationOrchestrator.createRecurringNotification(CreateUpdateRecurringNotificationDTO data, AuthenticatedUserRef userRef) Creates aRecurringNotification.RecurringNotificationOrchestrator.getRecurringNotificationByType(RecurringNotificationRequestContext context) Obtains the current user'sRecurringNotificationfor the resolved type.RecurringNotificationOrchestrator.updateRecurringNotification(CreateUpdateRecurringNotificationDTO data, RecurringNotificationRequestContext context) Updates an existingRecurringNotification.Methods in com.bluebell.greenhouse.planter.orchestrators.notification that return types with arguments of type RecurringNotificationDTOModifier and TypeMethodDescriptionRecurringNotificationOrchestrator.getRecurringNotificationsForCurrentUser(AuthenticatedUserRef userRef) Obtains everyRecurringNotificationbelonging to the current user.