Skip to content

Commit

Permalink
release 3.0.15-beta source code for java
Browse files Browse the repository at this point in the history
  • Loading branch information
Huaweicloud-SDK committed Sep 30, 2020
1 parent 133660f commit a14a192
Show file tree
Hide file tree
Showing 745 changed files with 45,494 additions and 2,357 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 3.0.15-beta 2020-09-30
## HuaweiCloud SDK CBR
- ### Features
- Support Cloud Backup and Recovery service.
- ### Bug Fix
- None
- ### Change
- None


## 3.0.14-beta 2020-09-24
## HuaweiCloud SDK Core
- ### Features
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG_CN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 3.0.15-beta 2020-09-30
## HuaweiCloud SDK CBR
- ### 新增特性
- 支持云备份服务
- ### 解决问题
-
- ### 特性变更
-


## 3.0.14-beta 2020-09-24
## HuaweiCloud SDK Core
- ### 新增特性
Expand Down
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

<parent>
<groupId>com.huaweicloud.sdk</groupId>
<version>3.0.14-beta</version>
<version>3.0.15-beta</version>
<artifactId>huaweicloud-sdk</artifactId>
</parent>

<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>huaweicloud-sdk-core</artifactId>
<version>3.0.14-beta</version>
<version>3.0.15-beta</version>
<name>Huaweicloud SDK for Java Core</name>
<description>Core code for Huaweicloud SDK for Java</description>
<url>https://github.com/huaweicloud/huaweicloud-sdk-java-v3</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

import com.huaweicloud.sdk.core.auth.AbstractCredentials;
import com.huaweicloud.sdk.core.auth.BasicCredentials;
import com.huaweicloud.sdk.core.auth.GlobalCredentials;
import com.huaweicloud.sdk.core.auth.ICredential;
import com.huaweicloud.sdk.core.exception.SdkException;
import com.huaweicloud.sdk.core.http.HttpConfig;
Expand All @@ -39,16 +38,14 @@ public class ClientBuilder<T> {
private ICredential credential;
private HttpConfig httpConfig;
private String endpoint;
private List<String> credentialType = new ArrayList<>(Arrays.asList(BasicCredentials.class.getSimpleName(),
GlobalCredentials.class.getSimpleName()));
private List<String> credentialType = new ArrayList<>(Arrays.asList(BasicCredentials.class.getSimpleName()));

private static final String CUSTOMIZATION = "Customization";

public ClientBuilder(Function<HcClient, T> creator) {
this.creator = creator;
}


public ClientBuilder(Function<HcClient, T> creator, String credentialType) {
this.creator = creator;
this.credentialType = Arrays.asList(credentialType.split(","));
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<packaging>pom</packaging>
<groupId>com.huaweicloud.sdk</groupId>
<artifactId>huaweicloud-sdk</artifactId>
<version>3.0.14-beta</version>
<version>3.0.15-beta</version>
<name>Huaweicloud SDK for Java</name>
<description>Huaweicloud SDK for Java</description>
<url>https://github.com/huaweicloud/huaweicloud-sdk-java-v3</url>
Expand Down Expand Up @@ -48,7 +48,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<revision>3.0.14-beta</revision>
<revision>3.0.15-beta</revision>
<jackson.version>2.11.1</jackson.version>
<validation-api.version>2.0.1.Final</validation-api.version>
<okhttp.version>3.14.2</okhttp.version>
Expand Down
4 changes: 2 additions & 2 deletions services/apig/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.huaweicloud.sdk</groupId>
<version>3.0.14-beta</version>
<version>3.0.15-beta</version>
<artifactId>huaweicloud-sdk-services</artifactId>
<relativePath>..</relativePath>
</parent>
<groupId>com.huaweicloud.sdk</groupId>
<artifactId>huaweicloud-sdk-apig</artifactId>
<version>3.0.14-beta</version>
<version>3.0.15-beta</version>
<name>huaweicloud sdk apig</name>

<modelVersion>4.0.0</modelVersion>
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit a14a192

Please sign in to comment.