feat(sso): add captcha methods to VerifyService interface
Add getCaptcha and checkCaptcha methods for graphic captcha support in login verification flow. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
ae3c041745
commit
3fa6747c10
@ -1,6 +1,7 @@
|
|||||||
package com.css.txw.sso.service.verify;
|
package com.css.txw.sso.service.verify;
|
||||||
|
|
||||||
import com.css.ggzc.framework.common.pojo.CommonResult;
|
import com.css.ggzc.framework.common.pojo.CommonResult;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
public interface VerifyService {
|
public interface VerifyService {
|
||||||
|
|
||||||
@ -8,6 +9,7 @@ public interface VerifyService {
|
|||||||
|
|
||||||
Boolean checkVerifyToken(String verifyToken);
|
Boolean checkVerifyToken(String verifyToken);
|
||||||
|
|
||||||
|
CommonResult<Map<String, String>> getCaptcha(String remoteId);
|
||||||
|
|
||||||
|
Boolean checkCaptcha(String uuid, String code);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user