Class UserDetailsManagerResourceFactoryBean
java.lang.Object
org.springframework.security.config.provisioning.UserDetailsManagerResourceFactoryBean
- All Implemented Interfaces:
org.springframework.beans.factory.Aware
,org.springframework.beans.factory.FactoryBean<InMemoryUserDetailsManager>
,org.springframework.context.ResourceLoaderAware
public class UserDetailsManagerResourceFactoryBean
extends Object
implements org.springframework.context.ResourceLoaderAware, org.springframework.beans.factory.FactoryBean<InMemoryUserDetailsManager>
Constructs an
InMemoryUserDetailsManager
from a resource using
UserDetailsResourceFactoryBean
.- Since:
- 5.0
- See Also:
-
Field Summary
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfromResource
(org.springframework.core.io.Resource resource) Create a UserDetailsManagerResourceFactoryBean with a Resource that is a Properties file in the format defined inUserDetailsResourceFactoryBean
.fromResourceLocation
(String resourceLocation) Create a UserDetailsManagerResourceFactoryBean with the location of a Resource that is a Properties file in the format defined inUserDetailsResourceFactoryBean
.fromString
(String users) Create a UserDetailsManagerResourceFactoryBean with a String that is in the format defined inUserDetailsResourceFactoryBean
.Class<?>
void
setResource
(org.springframework.core.io.Resource resource) Sets a Resource that is a Properties file in the format defined inUserDetailsResourceFactoryBean
.void
setResourceLoader
(org.springframework.core.io.ResourceLoader resourceLoader) void
setResourceLocation
(String resourceLocation) Sets the location of a Resource that is a Properties file in the format defined inUserDetailsResourceFactoryBean
.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.beans.factory.FactoryBean
isSingleton
-
Constructor Details
-
UserDetailsManagerResourceFactoryBean
public UserDetailsManagerResourceFactoryBean()
-
-
Method Details
-
getObject
- Specified by:
getObject
in interfaceorg.springframework.beans.factory.FactoryBean<InMemoryUserDetailsManager>
- Throws:
Exception
-
getObjectType
- Specified by:
getObjectType
in interfaceorg.springframework.beans.factory.FactoryBean<InMemoryUserDetailsManager>
-
setResourceLoader
public void setResourceLoader(org.springframework.core.io.ResourceLoader resourceLoader) - Specified by:
setResourceLoader
in interfaceorg.springframework.context.ResourceLoaderAware
-
setResourceLocation
Sets the location of a Resource that is a Properties file in the format defined inUserDetailsResourceFactoryBean
.- Parameters:
resourceLocation
- the location of the properties file that contains the users (i.e. "classpath:users.properties")
-
setResource
public void setResource(org.springframework.core.io.Resource resource) Sets a Resource that is a Properties file in the format defined inUserDetailsResourceFactoryBean
.- Parameters:
resource
- the Resource to use
-
fromResourceLocation
Create a UserDetailsManagerResourceFactoryBean with the location of a Resource that is a Properties file in the format defined inUserDetailsResourceFactoryBean
.- Parameters:
resourceLocation
- the location of the properties file that contains the users (i.e. "classpath:users.properties")- Returns:
- the UserDetailsManagerResourceFactoryBean
-
fromResource
public static UserDetailsManagerResourceFactoryBean fromResource(org.springframework.core.io.Resource resource) Create a UserDetailsManagerResourceFactoryBean with a Resource that is a Properties file in the format defined inUserDetailsResourceFactoryBean
.- Parameters:
resource
- the Resource that is a properties file that contains the users- Returns:
- the UserDetailsManagerResourceFactoryBean
-
fromString
Create a UserDetailsManagerResourceFactoryBean with a String that is in the format defined inUserDetailsResourceFactoryBean
.- Parameters:
users
- the users in the format defined inUserDetailsResourceFactoryBean
- Returns:
- the UserDetailsManagerResourceFactoryBean
-