
com.aliyun.credentials.RsaKeyPairCredential Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of credentials-java Show documentation
Show all versions of credentials-java Show documentation
Alibaba Cloud Credentials for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
https://www.aliyun.com
package com.aliyun.credentials;
import com.aliyun.credentials.models.CredentialModel;
import com.aliyun.credentials.provider.AlibabaCloudCredentialsProvider;
import com.aliyun.credentials.utils.AuthConstant;
import com.aliyun.credentials.utils.RefreshUtils;
@Deprecated
public class RsaKeyPairCredential implements AlibabaCloudCredentials {
private String privateKeySecret;
private String publicKeyId;
private long expiration;
private AlibabaCloudCredentialsProvider provider;
public RsaKeyPairCredential(String publicKeyId, String privateKeySecret, long expiration, AlibabaCloudCredentialsProvider provider) {
if (publicKeyId == null || privateKeySecret == null) {
throw new IllegalArgumentException(
"You must provide a valid pair of Public Key ID and Private Key Secret.");
}
this.publicKeyId = publicKeyId;
this.privateKeySecret = privateKeySecret;
this.expiration = expiration;
this.provider = provider;
}
public void refreshCredential() {
if (RefreshUtils.withShouldRefresh(this.expiration)) {
CredentialModel credential = (CredentialModel) RefreshUtils.getNewCredential(this.provider);
this.publicKeyId = credential.getAccessKeyId();
this.expiration = credential.getExpiration();
this.privateKeySecret = credential.getAccessKeySecret();
}
}
@Override
public String getAccessKeyId() {
refreshCredential();
return publicKeyId;
}
@Override
public String getAccessKeySecret() {
refreshCredential();
return privateKeySecret;
}
@Override
public String getSecurityToken() {
return null;
}
@Override
public String getType() {
return AuthConstant.RSA_KEY_PAIR;
}
@Override
public String getBearerToken() {
return null;
}
public long getExpiration() {
return expiration;
}
public AlibabaCloudCredentialsProvider getProvider() {
return provider;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy