潘志宝
4 天以前 e14de70a3c4b393498d3e95717b19240c4426c22
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.iailab.module.infra.framework.file.core.client.ftp;
 
import com.iailab.module.infra.framework.file.core.client.FileClientConfig;
import lombok.Data;
import org.hibernate.validator.constraints.URL;
 
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
 
/**
 * Ftp 文件客户端的配置类
 *
 * @author iailab
 */
@Data
public class FtpFileClientConfig implements FileClientConfig {
 
    /**
     * 基础路径
     */
    @NotEmpty(message = "基础路径不能为空")
    private String basePath;
 
    /**
     * 自定义域名
     */
    @NotEmpty(message = "domain 不能为空")
    @URL(message = "domain 必须是 URL 格式")
    private String domain;
 
    /**
     * 主机地址
     */
    @NotEmpty(message = "host 不能为空")
    private String host;
    /**
     * 主机端口
     */
    @NotNull(message = "port 不能为空")
    private Integer port;
    /**
     * 用户名
     */
    @NotEmpty(message = "用户名不能为空")
    private String username;
    /**
     * 密码
     */
    @NotEmpty(message = "密码不能为空")
    private String password;
    /**
     * 连接模式
     *
     * 使用 {@link  cn.hutool.extra.ftp.FtpMode} 对应的字符串
     */
    @NotEmpty(message = "连接模式不能为空")
    private String mode;
 
}