All Downloads are FREE. Search and download functionalities are using the official Maven repository.

matrix.boot.common.dto.HttpCertDto Maven / Gradle / Ivy

There is a newer version: 2.1.11
Show newest version
package matrix.boot.common.dto;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;

import java.io.InputStream;
import java.io.Serializable;

/**
 * 证书请求参数
 * @author wangcheng
 */
@Data
@Accessors(chain = true)
@NoArgsConstructor
@AllArgsConstructor
public class HttpCertDto implements Serializable {

	private static final long serialVersionUID = 1L;

	/**
	 * 密钥
	 */
	private String password;

	/**
	 * 证书流
	 */
	private InputStream certStream;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy