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

com.qcloud.cos.sign.Credentials Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.sign;

/**
 * @author chengwu
 * 鉴权信息, 包括appId, 密钥对
 */
public class Credentials {
    private final long appId;
    private final String secretId;
    private final String secretKey;

    public Credentials(long appId, String secretId, String secretKey) {
        super();
        this.appId = appId;
        this.secretId = secretId;
        this.secretKey = secretKey;
    }

    public long getAppId() {
        return appId;
    }

    public String getSecretId() {
        return secretId;
    }

    public String getSecretKey() {
        return secretKey;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy