Package | Description |
---|---|
org.springframework.security.core.userdetails |
The standard interfaces for implementing user data DAOs.
|
org.springframework.security.core.userdetails.jdbc |
Exposes a JDBC-based authentication repository, implementing
org.springframework.security.core.userdetails.UserDetailsService UserDetailsService . |
org.springframework.security.core.userdetails.memory |
Exposes an in-memory authentication repository.
|
org.springframework.security.ldap.search |
LdapUserSearch implementations. |
org.springframework.security.ldap.userdetails |
LDAP-focused
UserDetails implementations which map from a ubset of the data
contained in some of the standard LDAP types (such as InetOrgPerson ). |
org.springframework.security.provisioning |
Contains simple user and authority group account provisioning interfaces together with a a
JDBC-based implementation.
|
org.springframework.security.web.authentication.rememberme |
Support for remembering a user between different web sessions.
|
Modifier and Type | Method and Description |
---|---|
UserDetails |
UserDetailsService.loadUserByUsername(String username)
Locates the user based on the username.
|
UserDetails |
AuthenticationUserDetailsService.loadUserDetails(T token) |
UserDetails |
UserDetailsByNameServiceWrapper.loadUserDetails(T authentication)
Get the UserDetails object from the wrapped UserDetailsService
implementation
|
Modifier and Type | Method and Description |
---|---|
UserDetails |
JdbcDaoImpl.loadUserByUsername(String username) |
Modifier and Type | Method and Description |
---|---|
UserDetails |
UserMap.getUser(String username)
Deprecated.
Locates the specified user by performing a case insensitive search by username.
|
UserDetails |
InMemoryDaoImpl.loadUserByUsername(String username)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
org.springframework.ldap.core.DirContextOperations |
LdapUserSearch.searchForUser(String username)
Locates a single user in the directory and returns the LDAP information for that user.
|
Modifier and Type | Method and Description |
---|---|
UserDetails |
LdapUserDetailsService.loadUserByUsername(String username) |
Modifier and Type | Method and Description |
---|---|
UserDetails |
InMemoryUserDetailsManager.loadUserByUsername(String username) |
Modifier and Type | Method and Description |
---|---|
protected abstract UserDetails |
AbstractRememberMeServices.processAutoLoginCookie(String[] cookieTokens,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Called from autoLogin to process the submitted persistent login cookie.
|
Copyright © 2015. All rights reserved.