提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.infra.framework.file.core.client.db; |
H |
2 |
|
|
3 |
import com.iailab.module.infra.framework.file.core.client.FileClientConfig; |
|
4 |
import lombok.Data; |
|
5 |
import org.hibernate.validator.constraints.URL; |
|
6 |
|
|
7 |
import javax.validation.constraints.NotEmpty; |
|
8 |
|
|
9 |
/** |
|
10 |
* 基于 DB 存储的文件客户端的配置类 |
|
11 |
* |
|
12 |
* @author iailab |
|
13 |
*/ |
|
14 |
@Data |
|
15 |
public class DBFileClientConfig implements FileClientConfig { |
|
16 |
|
|
17 |
/** |
|
18 |
* 自定义域名 |
|
19 |
*/ |
|
20 |
@NotEmpty(message = "domain 不能为空") |
|
21 |
@URL(message = "domain 必须是 URL 格式") |
|
22 |
private String domain; |
|
23 |
|
|
24 |
} |