Interface CustomizedUserPermissionRepository<D>
- All Superinterfaces:
com.broadleafcommerce.common.extension.DomainTypeAware
- All Known Subinterfaces:
JpaUserPermissionRepository<D>
,UserPermissionRepository<D>
- All Known Implementing Classes:
JpaCustomizedUserPermissionRepository
public interface CustomizedUserPermissionRepository<D>
extends com.broadleafcommerce.common.extension.DomainTypeAware
Additional functionality necessary for
UserPermissionRepository
.- Author:
- Samarth Dhruva (samarthd)
-
Method Summary
Modifier and TypeMethodDescriptioncreateOnlyIfDoesNotExist
(D permission, Instant lastUpdated) A specialized create operation for creating an entity with a pre-defined id with the minimum guarantee that concurrent requests to this method for the same entity ID will fail.replaceOnlyIfLastUpdatedBefore
(String entityId, D permission, Instant lastUpdated) A specialized replace operation that does not invoke the "save" create-or-update behavior.Methods inherited from interface com.broadleafcommerce.common.extension.DomainTypeAware
getDomainType
-
Method Details
-
createOnlyIfDoesNotExist
A specialized create operation for creating an entity with a pre-defined id with the minimum guarantee that concurrent requests to this method for the same entity ID will fail.This is intended to be used in concurrent scenarios where only one operation should succeed.
Note that this method should create the record with the provided
UserPermission.archived
value, even if it istrue
.- Parameters:
permission
- the permission to create. Must have a non-null id present.lastUpdated
- theUserPermission.lastUpdated
to set on the permission- Returns:
- the permission if successfully created,
null
otherwise
-
replaceOnlyIfLastUpdatedBefore
A specialized replace operation that does not invoke the "save" create-or-update behavior. This operation should directly attempt an atomic update that the data store will reject if the entity is not found or has a lastUpdated ahead of the current change.This is intended to be used in concurrent scenarios where only one operation should succeed.
Note that this update should succeed even if the existing record is
UserPermission.archived
.Note that this method should also set the provided
UserPermission.archived
value, even if it istrue
.- Parameters:
entityId
- the id of the entity to replacepermission
- the replacement entitylastUpdated
- the timestamp of the current change. This will be compared to the lastUpdated on the existing entity for determination of whether the replacement should occur. Furthermore, the replacement will have itsUserPermission.lastUpdated
set to this value.- Returns:
- the permission after replacement if successfully replaced, or
null
if the entity was not found or could not be updated due to its lastUpdated value.
-