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

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

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

import com.capitalone.dashboard.model.AuthType;
import org.springframework.security.authentication.AuthenticationDetailsSource;

import javax.servlet.http.HttpServletRequest;

public class LdapAuthenticationDetailsSource implements AuthenticationDetailsSource {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy