Class SpringSecurityUtils
java.lang.Object
org.springframework.ws.soap.security.support.SpringSecurityUtils
@Deprecated(since="4.0.19",
forRemoval=true)
public abstract class SpringSecurityUtils
extends Object
Deprecated, for removal: This API element is subject to removal in a future version.
Generic utility methods for Spring Security.
- Since:
- 1.5.8
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionstatic voidcheckUserValidity(org.springframework.security.core.userdetails.UserDetails user) Deprecated, for removal: This API element is subject to removal in a future version.as of 4.0.19 in favor ofAccountStatusUserDetailsChecker
-
Constructor Details
-
SpringSecurityUtils
public SpringSecurityUtils()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
checkUserValidity
@Deprecated(since="4.0.19", forRemoval=true) public static void checkUserValidity(org.springframework.security.core.userdetails.UserDetails user) throws org.springframework.security.authentication.AccountExpiredException, org.springframework.security.authentication.CredentialsExpiredException, org.springframework.security.authentication.DisabledException, org.springframework.security.authentication.LockedException Deprecated, for removal: This API element is subject to removal in a future version.as of 4.0.19 in favor ofAccountStatusUserDetailsCheckerChecks the validity of a user's account and credentials.- Parameters:
user- the user to check- Throws:
org.springframework.security.authentication.AccountExpiredException- if the account has expiredorg.springframework.security.authentication.CredentialsExpiredException- if the credentials have expiredorg.springframework.security.authentication.DisabledException- if the account is disabledorg.springframework.security.authentication.LockedException- if the account is locked
-
AccountStatusUserDetailsChecker