All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.qcloud.vod.common.VodCosConf Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.qcloud.vod.common;

/**
 * 点播Cos配置
 * @author jianguoxu
 * @time 2017/9/5 15:35
 */
public class VodCosConf {

    private String bucketName;

    private String storagePath;

    private String filePath;

    public VodCosConf() {}

    public VodCosConf(String bucketName, String storagePath, String filePath) {
        this.bucketName = bucketName;
        this.storagePath = storagePath;
        this.filePath = filePath;
    }

    public String getBucketName() {
        return bucketName;
    }

    public void setBucketName(String bucketName) {
        this.bucketName = bucketName;
    }

    public String getStoragePath() {
        return storagePath;
    }

    public void setStoragePath(String storagePath) {
        this.storagePath = storagePath;
    }

    public String getFilePath() {
        return filePath;
    }

    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }

    @Override
    public String toString() {
        return "VodCosConf{" +
                "bucketName='" + bucketName + '\'' +
                ", storagePath='" + storagePath + '\'' +
                ", filePath='" + filePath + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy