赞
踩
package org.springframework.security.authentication;
public interface AuthenticationProvider
boolean supports(java.lang.Class<?> authentication
如果此AuthenticationProvider支持指定的Authentication对象,则返回true。
返回true,不代表AuthenticationProvider能对Authentication类实例做身份认证。它只表示AuthenticationProvider能处理它。即使返回true,authenticate(Authentication)方法仍然可能返回null,意味着需要执行其他AuthenticationProvider。
在运行时,将在ProviderManager中选择能够执行身份验证的AuthenticationProvider。
Authentication authenticate(Authentication authentication) throws AuthenticationException
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。