View Javadoc
1   package org.oxerr.spring.security.wechat.core.userdetails;
2   
3   import org.springframework.security.core.AuthenticationException;
4   import org.springframework.security.core.userdetails.UserDetails;
5   
6   public interface WeChatUserDetailsService {
7   
8   	UserDetails loadUserByCode(String code) throws AuthenticationException;
9   
10  }