cn.herodotus.engine.oauth2.management.dto.SessionExchange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-sdk-management Show documentation
Show all versions of oauth2-sdk-management Show documentation
Dante Cloud 基于 Spring Authorization Server 的认证核心管理模块
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2020-2030 郑庚伟 ZHENGGENGWEI (码匠君), Licensed under the AGPL License
*
* This file is part of Herodotus Engine.
*
* Herodotus Engine is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Herodotus Engine is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package cn.herodotus.engine.oauth2.management.dto;
import cn.herodotus.engine.assistant.definition.domain.base.AbstractDto;
import com.google.common.base.MoreObjects;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotBlank;
/**
* Description: 机要传递实体
*
* @author : gengwei.zheng
* @date : 2021/10/2 16:29
*/
@Schema(title = "机要传递实体")
public class SessionExchange extends AbstractDto {
@NotBlank(message = "confidential参数不能为空")
@Schema(title = "用后端RSA/SM2 PublicKey加密的前端RSA/SM2 PublicKey")
private String publicKey;
@NotBlank(message = "Session Key不能为空")
@Schema(title = "未登录前端身份标识")
private String sessionId;
public String getPublicKey() {
return publicKey;
}
public void setPublicKey(String publicKey) {
this.publicKey = publicKey;
}
public String getSessionId() {
return sessionId;
}
public void setSessionId(String sessionId) {
this.sessionId = sessionId;
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("publicKey", publicKey)
.add("sessionId", sessionId)
.toString();
}
}