com.taotao.cloud.oss.fastdfs.FastdfsProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taotao-cloud-starter-oss-fastdfs Show documentation
Show all versions of taotao-cloud-starter-oss-fastdfs Show documentation
taotao-cloud-starter-oss-fastdfs
/*
* 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.cloud.oss.fastdfs;
import java.util.ArrayList;
import java.util.List;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
/**
* Fastdfs文件服务Properties
*
* @author shuigedeng
* @version 2022.03
* @since 2020/10/26 09:40
*/
@RefreshScope
@ConfigurationProperties(prefix = FastdfsProperties.PREFIX)
public class FastdfsProperties {
public static final String PREFIX = "taotao.cloud.oss.fastdfs";
/** 读取时间 */
private int soTimeout = 1000;
/** 连接超时时间 */
private int connectTimeout = 1000;
/** Tracker 地址列表 */
private List trackerList = new ArrayList<>();
public int getSoTimeout() {
return soTimeout;
}
public void setSoTimeout(int soTimeout) {
this.soTimeout = soTimeout;
}
public int getConnectTimeout() {
return connectTimeout;
}
public void setConnectTimeout(int connectTimeout) {
this.connectTimeout = connectTimeout;
}
public List getTrackerList() {
return trackerList;
}
public void setTrackerList(List trackerList) {
this.trackerList = trackerList;
}
}