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

com.capitalone.dashboard.auth.ldap.LdapAuthenticationDetailsSource Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.auth.ldap;

import javax.servlet.http.HttpServletRequest;

import org.springframework.security.authentication.AuthenticationDetailsSource;

import com.capitalone.dashboard.model.AuthType;

public class LdapAuthenticationDetailsSource implements AuthenticationDetailsSource {

	@Override
	public AuthType buildDetails(HttpServletRequest context) {
		return AuthType.LDAP;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy