com.taotao.boot.oss.pingan.PingAnOssConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taotao-boot-starter-oss-pingan Show documentation
Show all versions of taotao-boot-starter-oss-pingan Show documentation
taotao-boot-starter-oss-pingan
The newest version!
/*
* Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* 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 com.taotao.boot.oss.pingan;
import com.taotao.boot.oss.common.model.SliceConfig;
import com.taotao.boot.oss.common.util.OssPathUtil;
/**
* 平安oss配置
*
* @author shuigedeng
* @version 2022.04
* @since 2022-04-27 17:42:01
*/
public class PingAnOssConfig {
private String userAgent;
private String obsUrl;
private String obsAccessKey;
private String obsSecret;
private String basePath;
private String bucketName;
private Boolean representPathInKey = false;
private String domainName;
/** 断点续传参数 */
private SliceConfig sliceConfig = new SliceConfig();
public void init() {
this.sliceConfig.init();
basePath = OssPathUtil.valid(basePath);
}
public String getUserAgent() {
return userAgent;
}
public void setUserAgent(String userAgent) {
this.userAgent = userAgent;
}
public String getObsUrl() {
return obsUrl;
}
public void setObsUrl(String obsUrl) {
this.obsUrl = obsUrl;
}
public String getObsAccessKey() {
return obsAccessKey;
}
public void setObsAccessKey(String obsAccessKey) {
this.obsAccessKey = obsAccessKey;
}
public String getObsSecret() {
return obsSecret;
}
public void setObsSecret(String obsSecret) {
this.obsSecret = obsSecret;
}
public String getBasePath() {
return basePath;
}
public void setBasePath(String basePath) {
this.basePath = basePath;
}
public String getBucketName() {
return bucketName;
}
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
public Boolean getRepresentPathInKey() {
return representPathInKey;
}
public void setRepresentPathInKey(Boolean representPathInKey) {
this.representPathInKey = representPathInKey;
}
public String getDomainName() {
return domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public SliceConfig getSliceConfig() {
return sliceConfig;
}
public void setSliceConfig(SliceConfig sliceConfig) {
this.sliceConfig = sliceConfig;
}
}