blob: 9ad62814fed290296af0c2fb35d74c9b8c12a5e4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import java.util.Optional
import java.util.Set
import org.apache.syncope.common.lib.to.OrgUnit
import org.apache.syncope.common.lib.to.Provision
import org.apache.syncope.core.persistence.api.entity.task.TaskExec
import org.apache.syncope.core.provisioning.api.propagation.PropagationActions
import org.apache.syncope.core.provisioning.api.propagation.PropagationTaskInfo;
import org.identityconnectors.framework.common.objects.ConnectorObject
@CompileStatic
class MyPropagationActions implements PropagationActions {
@Override
Set<String> moreAttrsToGet(Optional<PropagationTask> task, OrgUnit orgUnit) {
return Set.of();
}
@Override
Set<String> moreAttrsToGet(Optional<PropagationTask> task, Provision provision) {
return Set.of();
}
@Override
void before(PropagationTaskInfo taskInfo) {
// do nothing
}
@Override
void onError(PropagationTaskInfo taskInfo, TaskExec execution, Exception error) {
// do nothing
}
@Override
void after(PropagationTaskInfo taskInfo, TaskExec execution, ConnectorObject afterObj) {
// do nothing
}
}