![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.common.CommonClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
package com.tencentcloudapi.common;
import com.tencentcloudapi.common.exception.TencentCloudSDKException;
import com.tencentcloudapi.common.profile.ClientProfile;
public class CommonClient extends AbstractClient {
public CommonClient(String productName, String version, Credential credential, String region) {
this(productName, version, credential, region, new ClientProfile());
}
public CommonClient(String productName, String version,
Credential credential, String region, ClientProfile profile) {
super(productName + ".tencentcloudapi.com", version, credential, region, profile);
}
public String commonRequest(AbstractModel req, String actionName) throws TencentCloudSDKException {
String rspStr = "";
rspStr = this.internalRequest(req, actionName);
return rspStr;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy