类 AuthenticateApiImpl
- java.lang.Object
-
- net.risesoft.api.v0.org.AuthenticateApiImpl
-
- 所有已实现的接口:
AuthenticateApi
@Primary @Validated @RestController("v0AuthenticateApiImpl") @RequestMapping(value="/services/rest/auth", produces="application/json") @Deprecated public class AuthenticateApiImpl extends Object implements AuthenticateApi已过时。用户身份验证服务组件- 从以下版本开始:
- 9.6.0
- 作者:
- dingzhaojun, qinman, mengjuhua
- Date:
- 2022/2/10
-
-
构造器概要
构造器 构造器 说明 AuthenticateApiImpl()已过时。
-
方法概要
所有方法 实例方法 具体方法 已过时的方法 修饰符和类型 方法 说明 net.risesoft.model.platform.Messageauthenticate3(@NotBlank String tenantShortName, @NotBlank String loginName, @NotBlank String password)已过时。根据用户名和密码认证net.risesoft.model.platform.Messageauthenticate5(@NotBlank String tenantShortName, @NotBlank String mobile, @NotBlank String password)已过时。根据手机号和密码认证
-
-
-
方法详细资料
-
authenticate3
public net.risesoft.model.platform.Message authenticate3(@RequestParam("tenantShortName") @NotBlank @NotBlank String tenantShortName, @RequestParam("loginName") @NotBlank @NotBlank String loginName, @RequestParam("password") @NotBlank @NotBlank String password)已过时。根据用户名和密码认证- 指定者:
authenticate3在接口中AuthenticateApi- 参数:
tenantShortName- 租户英文名称loginName- 登录名称password- 登录密码- 返回:
- Message
- 从以下版本开始:
- 9.6.0
-
authenticate5
public net.risesoft.model.platform.Message authenticate5(@RequestParam("tenantShortName") @NotBlank @NotBlank String tenantShortName, @RequestParam("mobile") @NotBlank @NotBlank String mobile, @RequestParam("password") @NotBlank @NotBlank String password)已过时。根据手机号和密码认证- 指定者:
authenticate5在接口中AuthenticateApi- 参数:
tenantShortName- 租户英文名称mobile- 手机号password- 密码- 返回:
- Message
- 从以下版本开始:
- 9.6.0
-
-