Interface NotificationStateValueUpdater
-
- All Superinterfaces:
com.broadleafcommerce.common.messaging.notification.NotificationStateRepository,com.broadleafcommerce.common.messaging.notification.NotificationStateRepositoryFragment
- All Known Implementing Classes:
JpaNotificationStateRepositoryFragment
public interface NotificationStateValueUpdater extends com.broadleafcommerce.common.messaging.notification.NotificationStateRepositoryFragmentAdditional functionality for flows that need to work withNotificationStateas a separate concept from the entity itself. This occurs when the notification state is persisted separately from the entity, as is the case with Jpa.- Author:
- Jeff Fischer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<com.broadleafcommerce.common.messaging.notification.domain.NotificationState>findNotificationMembers(Class<?> entityType, String nativeId)Based on identifying factorsentityType, andnativeId, retrieve all the associatedNotificationStateinstances.booleansetNotificationValues(Object nativeId, String messageType, Class<?> entityType, Map<String,Object> vals)Based on identifying factorsnativeId,messageType, andentityType, set other fields (identified byvalsmap key) onNotificationStateto the corresponding value from thevalsmap.
-
-
-
Method Detail
-
setNotificationValues
boolean setNotificationValues(@NonNull Object nativeId, @NonNull String messageType, @NonNull Class<?> entityType, @NonNull Map<String,Object> vals)Based on identifying factorsnativeId,messageType, andentityType, set other fields (identified byvalsmap key) onNotificationStateto the corresponding value from thevalsmap.- Parameters:
nativeId- The primary key value of the related container entity. SeeJpaNotificationState.getContainer().messageType- The message type for this notification state. SeeNotificationState.getMessageType().entityType- The entity type of the related container entity. SeeJpaNotificationState.getEntityType().vals- The field name and update value pairs to apply to the identifiedNotificationState.- Returns:
- Whether or not a
NotificationStateinstance was actually updated as a result of this call.
-
findNotificationMembers
List<com.broadleafcommerce.common.messaging.notification.domain.NotificationState> findNotificationMembers(@NonNull Class<?> entityType, @NonNull String nativeId)
Based on identifying factorsentityType, andnativeId, retrieve all the associatedNotificationStateinstances.- Parameters:
entityType- The entity type of the related container entity. SeeJpaNotificationState.getEntityType().nativeId- The primary key value of the related container entity. SeeJpaNotificationState.getContainer().- Returns:
- The list of related
JpaNotificationStateinstances.
-
-