mirror of https://github.com/alibaba/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
441 B
28 lines
441 B
9 months ago
|
package com.alibaba.easytools.spring.oss;
|
||
|
|
||
|
import com.alibaba.easytools.base.enums.BaseEnum;
|
||
|
|
||
|
import com.aliyun.oss.model.CannedAccessControlList;
|
||
|
|
||
|
/**
|
||
|
* oss枚举
|
||
|
*
|
||
|
* @author 是仪
|
||
|
*/
|
||
|
public interface OssKindEnum extends BaseEnum<String> {
|
||
|
|
||
|
/**
|
||
|
* 获取权限控制
|
||
|
*
|
||
|
* @return
|
||
|
*/
|
||
|
CannedAccessControlList getObjectAcl();
|
||
|
|
||
|
/**
|
||
|
* 样式处理
|
||
|
*
|
||
|
* @return
|
||
|
*/
|
||
|
String getProcess();
|
||
|
}
|