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