use of org.apache.syncope.core.provisioning.api.pushpull.AnyObjectPullResultHandler in project syncope by apache.
the class PullJobDelegate method buildAnyObjectHandler.
protected AnyObjectPullResultHandler buildAnyObjectHandler() {
AnyObjectPullResultHandler handler = (AnyObjectPullResultHandler) ApplicationContextProvider.getBeanFactory().createBean(DefaultAnyObjectPullResultHandler.class, AbstractBeanDefinition.AUTOWIRE_BY_NAME, false);
handler.setProfile(profile);
handler.setPullExecutor(this);
return handler;
}
Aggregations