blade-tool/blade-core-oss/src/main/java/org/springblade/core/oss/rule/OssRule.java
2019-06-17 00:15:24 +08:00

42 lines
1.0 KiB
Java

/**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com).
* <p>
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.gnu.org/licenses/lgpl.html
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springblade.core.oss.rule;
/**
* Oss通用规则
*
* @author Chill
*/
public interface OssRule {
/**
* 获取存储桶规则
*
* @param bucketName 存储桶名称
* @return String
*/
String bucketName(String bucketName);
/**
* 获取文件名规则
*
* @param originalFilename 文件名
* @return String
*/
String fileName(String originalFilename);
}