use of org.orcid.core.manager.IdentityProviderManager in project ORCID-Source by ORCID.
the class LoadIdentityProviders method main.
@SuppressWarnings("resource")
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("orcid-core-context.xml");
IdentityProviderManager identityProviderManager = (IdentityProviderManager) context.getBean("identityProviderManager");
identityProviderManager.loadIdentityProviders();
System.exit(0);
}
Aggregations