xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
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
package com.dl.oss.enumd;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 * minio策略配置
 *
 * @author Lion Li
 */
@Getter
@AllArgsConstructor
public enum PolicyType {
 
    /**
     * 只读
     */
    READ("read-only"),
 
    /**
     * 只写
     */
    WRITE("write-only"),
 
    /**
     * 读写
     */
    READ_WRITE("read-write");
 
    /**
     * 类型
     */
    private final String type;
 
}