类 UpdateUserOptionsDto
- java.lang.Object
-
- cn.authing.sdk.java.dto.UpdateUserOptionsDto
-
public class UpdateUserOptionsDto extends Object
-
-
嵌套类概要
嵌套类 修饰符和类型 类 说明 static classUpdateUserOptionsDto.PasswordEncryptType密码加密类型,支持使用 RSA256 和国密 SM2 算法进行加密。static classUpdateUserOptionsDto.UserIdType用户 ID 类型,默认值为 `user_id`,可选值为: - `user_id`: Authing 用户 ID,如 `6319a1504f3xxxxf214dd5b7` - `phone`: 用户手机号 - `email`: 用户邮箱 - `username`: 用户名 - `external_id`: 用户在外部系统的 ID,对应 Authing 用户信息的 `externalId` 字段 - `identity`: 用户的外部身份源信息,格式为 `: `,其中 ` ` 为 Authing 身份源的 ID,` ` 为用户在外部身份源的 ID。
-
构造器概要
构造器 构造器 说明 UpdateUserOptionsDto()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 BooleangetAutoGeneratePassword()UpdateUserOptionsDto.PasswordEncryptTypegetPasswordEncryptType()BooleangetResetPasswordOnFirstLogin()BooleangetResetPasswordOnNextLogin()SendResetPasswordNotificationDtogetSendPasswordResetedNotification()UpdateUserOptionsDto.UserIdTypegetUserIdType()voidsetAutoGeneratePassword(Boolean autoGeneratePassword)voidsetPasswordEncryptType(UpdateUserOptionsDto.PasswordEncryptType passwordEncryptType)voidsetResetPasswordOnFirstLogin(Boolean resetPasswordOnFirstLogin)voidsetResetPasswordOnNextLogin(Boolean resetPasswordOnNextLogin)voidsetSendPasswordResetedNotification(SendResetPasswordNotificationDto sendPasswordResetedNotification)voidsetUserIdType(UpdateUserOptionsDto.UserIdType userIdType)
-
-
-
方法详细资料
-
getUserIdType
public UpdateUserOptionsDto.UserIdType getUserIdType()
-
setUserIdType
public void setUserIdType(UpdateUserOptionsDto.UserIdType userIdType)
-
getResetPasswordOnFirstLogin
public Boolean getResetPasswordOnFirstLogin()
-
setResetPasswordOnFirstLogin
public void setResetPasswordOnFirstLogin(Boolean resetPasswordOnFirstLogin)
-
getResetPasswordOnNextLogin
public Boolean getResetPasswordOnNextLogin()
-
setResetPasswordOnNextLogin
public void setResetPasswordOnNextLogin(Boolean resetPasswordOnNextLogin)
-
getPasswordEncryptType
public UpdateUserOptionsDto.PasswordEncryptType getPasswordEncryptType()
-
setPasswordEncryptType
public void setPasswordEncryptType(UpdateUserOptionsDto.PasswordEncryptType passwordEncryptType)
-
getAutoGeneratePassword
public Boolean getAutoGeneratePassword()
-
setAutoGeneratePassword
public void setAutoGeneratePassword(Boolean autoGeneratePassword)
-
getSendPasswordResetedNotification
public SendResetPasswordNotificationDto getSendPasswordResetedNotification()
-
setSendPasswordResetedNotification
public void setSendPasswordResetedNotification(SendResetPasswordNotificationDto sendPasswordResetedNotification)
-
-