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
| package tech.aiflowy.common.filestorage;
|
|
|
| /**
| * minio策略配置
| *
| *
| */
|
| public enum PolicyType {
|
| /**
| * 只读
| */
| READ("read-only"),
|
| /**
| * 只写
| */
| WRITE("write-only"),
|
| /**
| * 读写
| */
| READ_WRITE("read-write");
|
| PolicyType(String type) {
| this.type = type;
| }
|
| public String getType() {
| return type;
| }
|
| /**
| * 类型
| */
| private final String type;
|
|
| }
|
|