com.capitalone.dashboard.ldap.LdapAuthenticationDetailsSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-audit Show documentation
Show all versions of api-audit Show documentation
Hygieia Audit Rest API Layer
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