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

com.ms.tools.components.cloud.qiniu.config.QiNiuCloudConfig Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
/*
 * @MS 2022-12-13
 * Copyright (c) 2001-2023 萌森
 * 保留所有权利
 * 本软件为萌森工作室所有及包含机密信息,须遵守其相关许可证条款进行使用。
 * Copyright (c) 2001-2023 Meng Sen
 * All rights reserved
 * This software is owned by Mengsen Studio and contains confidential information, and must be used in accordance with its relevant license terms.
 * Website:https://qyg2297248353.top
 */

package com.ms.tools.components.cloud.qiniu.config;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;

/**
 * 七牛云配置类
 *
 * @author ms
 */
@Configuration
@ConfigurationProperties(prefix = "ms.qiniu")
public class QiNiuCloudConfig {

    /**
     * 七牛云的accessKey
     */
    private String accessKey;

    /**
     * 七牛云的secretKey
     */
    private String secretKey;

    /**
     * 七牛云的域名
     */
    private String domain;


    public String getAccessKey() {
        return accessKey;
    }

    public void setAccessKey(String accessKey) {
        this.accessKey = accessKey;
    }

    public String getSecretKey() {
        return secretKey;
    }

    public void setSecretKey(String secretKey) {
        this.secretKey = secretKey;
    }

    public String getDomain() {
        return domain;
    }

    public void setDomain(String domain) {
        this.domain = domain;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy