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