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

com.aliyun.auth.signature.SignerParams Maven / Gradle / Ivy

The newest version!
package com.aliyun.auth.signature;

import com.aliyun.auth.credentials.ICredential;

public class SignerParams {
    private ICredential credentials;
    protected SignerParams() {
    }

    public static SignerParams create() {
        return new SignerParams();
    }

    public SignerParams setCredentials(ICredential credentials) {
        this.credentials = credentials;
        return this;
    }

    public ICredential credentials() {
        return this.credentials;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy