public class GenericUserKeyChangeHandler extends Object implements UserKeyChangeHandler
Modifier and Type | Field and Description |
---|---|
protected com.atlassian.event.api.EventPublisher |
eventPublisher |
protected ForeignKeyInfo |
foreignKeyInfo |
protected int |
numberOfTasks |
protected QueryDslAccessor |
queryDslAccessor |
DEFAULT_NUMBER_OF_TASKS
Constructor and Description |
---|
GenericUserKeyChangeHandler(QueryDslAccessor queryDslAccessor,
com.atlassian.event.api.EventPublisher eventPublisher,
ForeignKeyInfo foreignKeyInfo,
int numberOfTasks) |
Modifier and Type | Method and Description |
---|---|
Collection<AffectedEntity> |
getAffectedEntities(UserPropertyChangeParameter userPropertyChangeParameter)
This class is only called by
DelegatingChangeHandler and this method is not used, to not clutter the UI. |
protected List<Long> |
getIdsOfAffectedEntities(String original) |
int |
getNumberOfTasks(UserPropertyChangeParameter userPropertyChangeParameter)
Returns the number of tasks/stages to be executed in
AnonymizationHandler.update(Object) . |
String |
toString() |
ServiceResult |
update(UserPropertyChangeParameter userPropertyChangeParameter)
Performs the updates required by the user anonymization.
|
protected ServiceResult |
update(UserPropertyChangeParameter userPropertyChangeParameter,
int numberOfTasks) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
validateBusinessLogic
protected final QueryDslAccessor queryDslAccessor
protected final ForeignKeyInfo foreignKeyInfo
protected final int numberOfTasks
protected final com.atlassian.event.api.EventPublisher eventPublisher
public GenericUserKeyChangeHandler(QueryDslAccessor queryDslAccessor, com.atlassian.event.api.EventPublisher eventPublisher, ForeignKeyInfo foreignKeyInfo, int numberOfTasks)
@Nonnull public Collection<AffectedEntity> getAffectedEntities(@Nonnull UserPropertyChangeParameter userPropertyChangeParameter)
DelegatingChangeHandler
and this method is not used, to not clutter the UI.getAffectedEntities
in interface AnonymizationHandler<UserPropertyChangeParameter>
userPropertyChangeParameter
- Data relevant to the handled anonymization step, e.g. previous and new (anonymized) usernameDelegatingChangeHandler.getAffectedEntities(UserPropertyChangeParameter)
@Nonnull public ServiceResult update(@Nonnull UserPropertyChangeParameter userPropertyChangeParameter)
AnonymizationHandler
Implementations must be idempotent - multiple invocations of this method should lead to the same result. In particular, when the method fails we can call it again to finish the operation.
During the execution, implementations can update their the progress by calling Context.start(object);
on the context passed in parameter
, and subsequently call Context.Task.complete();
on the task
object to indicate task has finished.
Implementations can also call Context.setName("Name of current step")
to describe the task that is currently processed.
update
in interface AnonymizationHandler<UserPropertyChangeParameter>
userPropertyChangeParameter
- Data relevant to the handled anonymization step, e.g. previous and new (anonymized) usernameprotected ServiceResult update(@Nonnull UserPropertyChangeParameter userPropertyChangeParameter, int numberOfTasks)
public int getNumberOfTasks(@Nonnull UserPropertyChangeParameter userPropertyChangeParameter)
AnonymizationHandler
AnonymizationHandler.update(Object)
. Used for diving the progress bar
between all of the handlers in proportions based on the returned numbers.
Implementations are responsible to execute the corresponding number of calls to Context.start(object);
and Context.Task.complete();
in AnonymizationHandler.update(Object)
.
getNumberOfTasks
in interface AnonymizationHandler<UserPropertyChangeParameter>
AnonymizationHandler.DEFAULT_NUMBER_OF_TASKS
Copyright © 2002-2022 Atlassian. All Rights Reserved.