Package hudson.plugins.active_directory
Class ActiveDirectoryUnixAuthenticationProvider
java.lang.Object
hudson.plugins.active_directory.AbstractActiveDirectoryAuthenticationProvider
hudson.plugins.active_directory.ActiveDirectoryUnixAuthenticationProvider
- All Implemented Interfaces:
GroupDetailsService
,org.springframework.security.core.userdetails.UserDetailsService
public class ActiveDirectoryUnixAuthenticationProvider
extends AbstractActiveDirectoryAuthenticationProvider
AuthenticationProvider
with Active Directory, through LDAP.- Author:
- Kohsuke Kawaguchi, James Nord
-
Nested Class Summary
Nested classes/interfaces inherited from class hudson.plugins.active_directory.AbstractActiveDirectoryAuthenticationProvider
AbstractActiveDirectoryAuthenticationProvider.NoAuthentication
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static final String
protected TlsConfiguration
Deprecated. -
Constructor Summary
ConstructorsConstructorDescription -
Method Summary
Modifier and TypeMethodDescriptionloadGroupByGroupname
(String groupname) org.springframework.security.core.userdetails.UserDetails
retrieveUser
(String username, hudson.plugins.active_directory.AbstractActiveDirectoryAuthenticationProvider.Password password, ActiveDirectoryDomain domain, List<SocketInfo> ldapServers) Authenticates and retrieves the user by using the given list of available AD LDAP servers.protected org.springframework.security.core.userdetails.UserDetails
retrieveUser
(String username, org.springframework.security.authentication.UsernamePasswordAuthenticationToken authentication) Authenticates the user (ifauthentication!=null
), or retrieve the user name information (otherwise.)Methods inherited from class hudson.plugins.active_directory.AbstractActiveDirectoryAuthenticationProvider
additionalAuthenticationChecks, loadUserByUsername
-
Field Details
-
DN_FORMATTED
- See Also:
-
tlsConfiguration
Deprecated.Selects the SSL strategy to follow on the TLS connectionsEven if we are not using any of the TLS ports (3269/636) the plugin will try to establish a TLS channel using startTLS. Because of this, we need to be able to specify the SSL strategy on the plugin
For the moment there are two possible values: trustAllCertificates and trustStore.
-
-
Constructor Details
-
ActiveDirectoryUnixAuthenticationProvider
-
-
Method Details
-
retrieveUser
protected org.springframework.security.core.userdetails.UserDetails retrieveUser(String username, org.springframework.security.authentication.UsernamePasswordAuthenticationToken authentication) throws org.springframework.security.core.AuthenticationException Description copied from class:AbstractActiveDirectoryAuthenticationProvider
Authenticates the user (ifauthentication!=null
), or retrieve the user name information (otherwise.)- Specified by:
retrieveUser
in classAbstractActiveDirectoryAuthenticationProvider
- Throws:
org.springframework.security.core.AuthenticationException
-
retrieveUser
public org.springframework.security.core.userdetails.UserDetails retrieveUser(String username, hudson.plugins.active_directory.AbstractActiveDirectoryAuthenticationProvider.Password password, ActiveDirectoryDomain domain, List<SocketInfo> ldapServers) throws NamingException Authenticates and retrieves the user by using the given list of available AD LDAP servers.- Parameters:
password
- If this isAbstractActiveDirectoryAuthenticationProvider.NoAuthentication
, the authentication is not performed, and just the retrieval would happen.- Returns:
- never null
- Throws:
org.springframework.security.core.userdetails.UsernameNotFoundException
- The user didn't exist.NamingException
-
loadGroupByGroupname
-