Skip to content

Commit

Permalink
Remove password in CreateFileCompressionTask.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed May 12, 2023
1 parent e146902 commit c8e4bb8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 14 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-imm/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2023-05-12 Version: 2.1.15
- Remove password in CreateFileCompressionTask.

2023-05-11 Version: 2.1.14
- Add RequestDefinition.
- Hide endpoint.
Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-imm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-imm</artifactId>
<packaging>jar</packaging>
<version>2.1.14</version>
<version>2.1.15</version>
<name>aliyun-java-sdk-imm</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ public class CreateFileCompressionTaskRequest extends RpcAcsRequest<CreateFileCo
@SerializedName("notification")
private Notification notification;

private String password;

private String targetURI;

private String projectName;
Expand Down Expand Up @@ -101,17 +99,6 @@ public void setNotification(Notification notification) {
}
}

public String getPassword() {
return this.password;
}

public void setPassword(String password) {
this.password = password;
if(password != null){
putQueryParameter("Password", password);
}
}

public String getTargetURI() {
return this.targetURI;
}
Expand Down

0 comments on commit c8e4bb8

Please sign in to comment.