update
@Nonnull
public ServiceResult update(@Nonnull
UserPropertyChangeParameter userPropertyChangeParameter)
Performs the update operations related to the affected entities.
This method is executed in a background task and thus its accuracy is more important than performance.
This method should be idempotent - multiple invocations of this method should lead to the same result.
In other words when method fails we can call it again and finish operation.
During execution, the implementation class will update the progress by typically calling
Context.start(object);
on the context passed in parameter
, and subsequently call
Context.Task.complete();
on the the task object to indicate task has finished.
Implementation can also call Context.setName("Name of current step")
to describe the task that is currently processed.
- Specified by:
update
in interface AnonymizationHandler<UserPropertyChangeParameter>
- Overrides:
update
in class GenericUserKeyChangeHandler
- Parameters:
userPropertyChangeParameter
- Parameter
- Returns:
- a service outcome of the update operation, containing any errors