Skip to content

Commit

Permalink
Merge branch 'support-3.7' of github.com:Evolveum/midpoint into suppo…
Browse files Browse the repository at this point in the history
…rt-3.7
  • Loading branch information
semancik committed Aug 22, 2018
2 parents 9bb717c + c9c52df commit fe39b31
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Expand Up @@ -1145,4 +1145,9 @@ Object executeAdHocProvisioningScript(String resourceOid, String language, Strin
*/
@NotNull
Collection<PrismValue> collectAssignedFocusMappingsResults(@NotNull ItemPath path) throws SchemaException;

<F extends ObjectType> ModelContext<F> previewChanges(Collection<ObjectDelta<? extends ObjectType>> deltas,
ModelExecuteOptions options)
throws CommunicationException, ObjectNotFoundException, ObjectAlreadyExistsException, ConfigurationException,
SchemaException, SecurityViolationException, PolicyViolationException, ExpressionEvaluationException;
}
Expand Up @@ -1741,4 +1741,11 @@ public Collection<PrismValue> collectAssignedFocusMappingsResults(@NotNull ItemP
}
return rv;
}
@Override
public <F extends ObjectType> ModelContext<F> previewChanges(Collection<ObjectDelta<? extends ObjectType>> deltas,
ModelExecuteOptions options)
throws CommunicationException, ObjectNotFoundException, ObjectAlreadyExistsException, ConfigurationException,
SchemaException, SecurityViolationException, PolicyViolationException, ExpressionEvaluationException {
return modelInteractionService.previewChanges(deltas, options, getCurrentTask(), getCurrentResult());
}
}

0 comments on commit fe39b31

Please sign in to comment.