public interface

UserDetailsChecker

org.springframework.security.core.userdetails.UserDetailsChecker
Known Indirect Subclasses

Class Overview

Called by classes which make use of a UserDetailsService to check the status of the loaded UserDetails object. Typically this will involve examining the various flags associated with the account and raising an exception if the information cannot be used (for example if the user account is locked or disabled), but a custom implementation could perform any checks it wished.

The intention is that this interface should only be used for checks on the persistent data associated with the user. It should not involved in making any authentication decisions based on a submitted authentication request.

Summary

Public Methods
abstract void check(UserDetails toCheck)
Examines the User

Public Methods

public abstract void check (UserDetails toCheck)

Examines the User

Parameters
toCheck the UserDetails instance whose status should be checked.