25 lines
654 B
Java
25 lines
654 B
Java
package me.zhyd.oauth.request;
|
|
|
|
import me.zhyd.oauth.cache.AuthStateCache;
|
|
import me.zhyd.oauth.config.AuthConfig;
|
|
import me.zhyd.oauth.config.AuthDefaultSource;
|
|
|
|
/**
|
|
* 微软登录
|
|
* update 2021-08-24 mroldx (xzfqq5201314@gmail.com)
|
|
*
|
|
* @author yangkai.shen (https://xkcoding.com)
|
|
* @since 1.5.0
|
|
*/
|
|
public class AuthMicrosoftRequest extends AbstractAuthMicrosoftRequest {
|
|
|
|
public AuthMicrosoftRequest(AuthConfig config) {
|
|
super(config, AuthDefaultSource.MICROSOFT);
|
|
}
|
|
|
|
public AuthMicrosoftRequest(AuthConfig config, AuthStateCache authStateCache) {
|
|
super(config, AuthDefaultSource.MICROSOFT, authStateCache);
|
|
}
|
|
|
|
}
|