Skip to content

Commit

Permalink
Do post-merge compilation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Mar 6, 2019
1 parent edf7374 commit f849399
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Expand Up @@ -31,6 +31,7 @@
import com.evolveum.midpoint.prism.path.ItemPath;
import com.evolveum.midpoint.prism.query.ObjectPaging;
import com.evolveum.midpoint.prism.query.ObjectQuery;
import com.evolveum.midpoint.repo.api.PreconditionViolationException;
import com.evolveum.midpoint.schema.GetOperationOptions;
import com.evolveum.midpoint.schema.ObjectDeltaOperation;
import com.evolveum.midpoint.schema.ResultHandler;
Expand Down Expand Up @@ -723,7 +724,8 @@ <O extends ObjectType> Collection<ObjectDeltaOperation<? extends ObjectType>> me

void notifyChange(ResourceObjectShadowChangeDescriptionType changeDescription, OperationResult parentResult, Task task)
throws SchemaException, CommunicationException, ConfigurationException, SecurityViolationException,
ObjectNotFoundException, ObjectAlreadyExistsException, ExpressionEvaluationException;
ObjectNotFoundException, ObjectAlreadyExistsException, ExpressionEvaluationException, PolicyViolationException,
PreconditionViolationException;

@NotNull
PrismContext getPrismContext();
Expand Down
Expand Up @@ -2328,7 +2328,8 @@ public String getTaskThreadsDump(@NotNull String taskOid, @NotNull Task task, @N

public void notifyChange(ResourceObjectShadowChangeDescriptionType changeDescription, OperationResult parentResult, Task task)
throws SchemaException, CommunicationException, ConfigurationException, SecurityViolationException,
ObjectNotFoundException, ObjectAlreadyExistsException, ExpressionEvaluationException {
ObjectNotFoundException, ObjectAlreadyExistsException, ExpressionEvaluationException, PolicyViolationException,
PreconditionViolationException {

String oldShadowOid = changeDescription.getOldShadowOid();
ResourceEventDescription eventDescription = new ResourceEventDescription();
Expand Down
Expand Up @@ -21,6 +21,7 @@
import com.evolveum.midpoint.util.logging.LoggingUtils;
import com.evolveum.midpoint.util.logging.Trace;
import com.evolveum.midpoint.util.logging.TraceManager;
import com.evolveum.midpoint.xml.ns._public.common.common_3.TaskPartitionDefinitionType;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;
Expand Down Expand Up @@ -49,7 +50,7 @@ private void initialize() {
}

@Override
public TaskRunResult run(Task task) {
public TaskRunResult run(RunningTask task, TaskPartitionDefinitionType partitionDefinition) {

ConnectionFactory connectionFactory = new ConnectionFactory();

Expand Down

0 comments on commit f849399

Please sign in to comment.