Class UserLoginProperties
- java.lang.Object
-
- com.broadleafcommerce.auth.security.environment.UserLoginProperties
-
@ConfigurationProperties("broadleaf.auth.controller") public class UserLoginProperties extends ObjectProperties for authentication controllers- Author:
- Jay Aisenbrey (cja769)
-
-
Constructor Summary
Constructors Constructor Description UserLoginProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAutoLoginAfterPasswordReset()Whether the user should be automatically logged in after resetting their passwordbooleanisAutoLoginAfterRegistration()Whether the user should be automatically logged in after registrationvoidsetAutoLoginAfterPasswordReset(boolean autoLoginAfterPasswordReset)Whether the user should be automatically logged in after resetting their passwordvoidsetAutoLoginAfterRegistration(boolean autoLoginAfterRegistration)Whether the user should be automatically logged in after registration
-
-
-
Method Detail
-
isAutoLoginAfterRegistration
public boolean isAutoLoginAfterRegistration()
Whether the user should be automatically logged in after registration
-
setAutoLoginAfterRegistration
public void setAutoLoginAfterRegistration(boolean autoLoginAfterRegistration)
Whether the user should be automatically logged in after registration
-
isAutoLoginAfterPasswordReset
public boolean isAutoLoginAfterPasswordReset()
Whether the user should be automatically logged in after resetting their password
-
setAutoLoginAfterPasswordReset
public void setAutoLoginAfterPasswordReset(boolean autoLoginAfterPasswordReset)
Whether the user should be automatically logged in after resetting their password
-
-