blob: e72983c27fcff9c6b5587faddebfc3696ec6a743 [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.
*/
package org.apache.syncope.core.provisioning.java.pushpull;
import org.apache.syncope.common.lib.request.AnyUR;
import org.apache.syncope.common.lib.to.AnyTO;
import org.apache.syncope.core.persistence.api.entity.Any;
import org.apache.syncope.core.persistence.api.entity.AnyUtils;
import org.apache.syncope.core.persistence.api.entity.AnyUtilsFactory;
import org.apache.syncope.core.persistence.api.entity.task.ProvisioningTask;
import org.apache.syncope.core.provisioning.api.data.GroupDataBinder;
import org.apache.syncope.core.provisioning.api.data.UserDataBinder;
import org.apache.syncope.core.provisioning.api.propagation.PropagationManager;
import org.apache.syncope.core.provisioning.api.propagation.PropagationTaskExecutor;
import org.apache.syncope.core.provisioning.api.pushpull.ProvisioningProfile;
import org.apache.syncope.core.provisioning.api.pushpull.SyncopeResultHandler;
import org.apache.syncope.core.provisioning.api.WorkflowResult;
import org.apache.syncope.core.provisioning.api.data.AnyObjectDataBinder;
import org.apache.syncope.core.provisioning.api.pushpull.ProvisioningActions;
import org.apache.syncope.core.spring.security.SecurityProperties;
import org.apache.syncope.core.workflow.api.AnyObjectWorkflowAdapter;
import org.apache.syncope.core.workflow.api.GroupWorkflowAdapter;
import org.apache.syncope.core.workflow.api.UserWorkflowAdapter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
public abstract class AbstractSyncopeResultHandler<T extends ProvisioningTask, A extends ProvisioningActions>
implements SyncopeResultHandler<T, A> {
protected static final Logger LOG = LoggerFactory.getLogger(SyncopeResultHandler.class);
/**
* Propagation manager.
*/
@Autowired
protected PropagationManager propagationManager;
/**
* Task executor.
*/
@Autowired
protected PropagationTaskExecutor taskExecutor;
@Autowired
protected AnyObjectWorkflowAdapter awfAdapter;
/**
* User workflow adapter.
*/
@Autowired
protected UserWorkflowAdapter uwfAdapter;
/**
* Group workflow adapter.
*/
@Autowired
protected GroupWorkflowAdapter gwfAdapter;
@Autowired
protected AnyObjectDataBinder anyObjectDataBinder;
@Autowired
protected UserDataBinder userDataBinder;
@Autowired
protected GroupDataBinder groupDataBinder;
@Autowired
protected AnyUtilsFactory anyUtilsFactory;
@Autowired
protected SecurityProperties securityProperties;
/**
* Provisioning profile.
*/
protected ProvisioningProfile<T, A> profile;
protected abstract AnyUtils getAnyUtils();
protected abstract AnyTO getAnyTO(Any<?> any);
protected abstract WorkflowResult<? extends AnyUR> update(AnyUR req);
@Override
public void setProfile(final ProvisioningProfile<T, A> profile) {
this.profile = profile;
}
@Override
public ProvisioningProfile<T, A> getProfile() {
return profile;
}
protected String getContext() {
return (getClass().getSimpleName().contains("Pull") ? "PullTask" : "PushTask")
+ " " + profile.getTask().getKey() + " '" + profile.getTask().getName() + "'";
}
}