All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prerna.util.ldap.LdapAuthenticationFactory Maven / Gradle / Ivy

The newest version!
package prerna.util.ldap;

public class LdapAuthenticationFactory {
	
	/**
	 * Get the LDAP authentication process
	 * @return
	 */
	public static ILdapAuthenticator getAuthenticator(String ldapType) {
		if(ILdapAuthenticator.LDAP_TYPE_SEARCH.equals(ldapType)) {
			return new LdapSearchUserStructureConnection();
		}
		// default to simple case
		return new LdapTemplateStructureConnection();
	}
	
	private LdapAuthenticationFactory() {
		
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy