Skip to content

Commit

Permalink
MID-8842 ninja - task category processor
Browse files Browse the repository at this point in the history
(cherry picked from commit 2eb8cb3)
  • Loading branch information
1azyman committed Aug 1, 2023
1 parent a6f32e2 commit fdfb550
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
* Copyright (C) 2010-2023 Evolveum and contributors
*
* This work is dual-licensed under the Apache License 2.0
* and European Union Public License. See LICENSE file for details.
*/

package com.evolveum.midpoint.schema.validator.processor;

import com.evolveum.midpoint.prism.PrismObject;
import com.evolveum.midpoint.prism.path.ItemPath;
import com.evolveum.midpoint.schema.validator.UpgradeObjectProcessor;
import com.evolveum.midpoint.schema.validator.UpgradePhase;
import com.evolveum.midpoint.schema.validator.UpgradePriority;
import com.evolveum.midpoint.schema.validator.UpgradeType;
import com.evolveum.midpoint.xml.ns._public.common.common_3.TaskType;

@SuppressWarnings("unused")
public class TaskCategoryProcessor implements UpgradeObjectProcessor<TaskType> {

@Override
public UpgradePhase getPhase() {
return UpgradePhase.BEFORE;
}

@Override
public UpgradePriority getPriority() {
return UpgradePriority.NECESSARY;
}

@Override
public UpgradeType getType() {
return UpgradeType.SEAMLESS;
}

@Override
public boolean isApplicable(PrismObject<?> object, ItemPath path) {
return matchObjectTypeAndPathTemplate(object, path, TaskType.class, TaskType.F_CATEGORY);
}

@Override
public boolean process(PrismObject<TaskType> object, ItemPath path) throws Exception {
object.asObjectable().setCategory(null);

return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public void test70Archetype() throws Exception {
public void test80TaskRecomputation() throws Exception {
testUpgradeValidator("task-recomputation.xml", result -> {
Assertions.assertThat(result.getItems())
.hasSize(6);
.hasSize(7);

Assertions.assertThat(result.hasChanges()).isTrue();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

<name>recomputation</name>

<category>some category</category>

<activity>
<work>
<recomputation>
Expand Down

0 comments on commit fdfb550

Please sign in to comment.