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