cn.authing.sdk.java.dto.UpdateUserBatchOptionsDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import cn.authing.sdk.java.dto.SendResetPasswordNotificationDto;
public class UpdateUserBatchOptionsDto {
/**
* 下次登录要求重置密码
*/
@JsonProperty("resetPasswordOnNextLogin")
private Boolean resetPasswordOnNextLogin;
/**
* 密码加密类型,支持使用 RSA256 和国密 SM2 算法进行加密。默认为 `none` 不加密。
* - `none`: 不对密码进行加密,使用明文进行传输。
* - `rsa`: 使用 RSA256 算法对密码进行加密,需要使用 Authing 服务的 RSA 公钥进行加密,请阅读**介绍**部分了解如何获取 Authing 服务的 RSA256 公钥。
* - `sm2`: 使用 [国密 SM2 算法](https://baike.baidu.com/item/SM2/15081831) 对密码进行加密,需要使用 Authing 服务的 SM2 公钥进行加密,请阅读**介绍**部分了解如何获取 Authing 服务的 SM2 公钥。
*
*/
@JsonProperty("passwordEncryptType")
private PasswordEncryptType passwordEncryptType;
/**
* 是否自动生成密码
*/
@JsonProperty("autoGeneratePassword")
private Boolean autoGeneratePassword;
/**
* 重置密码发送邮件和手机号选项
*/
@JsonProperty("sendPasswordResetedNotification")
private SendResetPasswordNotificationDto sendPasswordResetedNotification;
public Boolean getResetPasswordOnNextLogin() {
return resetPasswordOnNextLogin;
}
public void setResetPasswordOnNextLogin(Boolean resetPasswordOnNextLogin) {
this.resetPasswordOnNextLogin = resetPasswordOnNextLogin;
}
public PasswordEncryptType getPasswordEncryptType() {
return passwordEncryptType;
}
public void setPasswordEncryptType(PasswordEncryptType passwordEncryptType) {
this.passwordEncryptType = passwordEncryptType;
}
public Boolean getAutoGeneratePassword() {
return autoGeneratePassword;
}
public void setAutoGeneratePassword(Boolean autoGeneratePassword) {
this.autoGeneratePassword = autoGeneratePassword;
}
public SendResetPasswordNotificationDto getSendPasswordResetedNotification() {
return sendPasswordResetedNotification;
}
public void setSendPasswordResetedNotification(SendResetPasswordNotificationDto sendPasswordResetedNotification) {
this.sendPasswordResetedNotification = sendPasswordResetedNotification;
}
/**
* 密码加密类型,支持使用 RSA256 和国密 SM2 算法进行加密。默认为 `none` 不加密。
* - `none`: 不对密码进行加密,使用明文进行传输。
* - `rsa`: 使用 RSA256 算法对密码进行加密,需要使用 Authing 服务的 RSA 公钥进行加密,请阅读**介绍**部分了解如何获取 Authing 服务的 RSA256 公钥。
* - `sm2`: 使用 [国密 SM2 算法](https://baike.baidu.com/item/SM2/15081831) 对密码进行加密,需要使用 Authing 服务的 SM2 公钥进行加密,请阅读**介绍**部分了解如何获取 Authing 服务的 SM2 公钥。
*
*/
public static enum PasswordEncryptType {
@JsonProperty("sm2")
SM2("sm2"),
@JsonProperty("rsa")
RSA("rsa"),
@JsonProperty("none")
NONE("none"),
;
private String value;
PasswordEncryptType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
}