Skip to content

Commit 6bd43c0

Browse files
committed
Generated 2019-01-15 for Qualitycheck.
1 parent b4e9af4 commit 6bd43c0

File tree

48 files changed

+1735
-835
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1735
-835
lines changed

aliyun-java-sdk-qualitycheck/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-07-30 Version: 4.7.14
2+
- Generated 2019-01-15 for `Qualitycheck`.
3+
14
2024-11-04 Version: 4.7.13
25
- Generated 2019-01-15 for `Qualitycheck`.
36

aliyun-java-sdk-qualitycheck/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-qualitycheck</artifactId>
66
<packaging>jar</packaging>
7-
<version>4.7.13</version>
7+
<version>4.7.14</version>
88
<name>aliyun-java-sdk-qualitycheck</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -92,7 +92,7 @@ http://www.aliyun.com</description>
9292
<plugin>
9393
<groupId>org.apache.maven.plugins</groupId>
9494
<artifactId>maven-gpg-plugin</artifactId>
95-
<version>1.5</version>
95+
<version>3.1.0</version>
9696
<executions>
9797
<execution>
9898
<id>sign-artifacts</id>
@@ -104,14 +104,14 @@ http://www.aliyun.com</description>
104104
</executions>
105105
</plugin>
106106
<plugin>
107-
<groupId>org.sonatype.plugins</groupId>
108-
<artifactId>nexus-staging-maven-plugin</artifactId>
109-
<version>1.6.3</version>
107+
<groupId>org.sonatype.central</groupId>
108+
<artifactId>central-publishing-maven-plugin</artifactId>
109+
<version>0.8.0</version>
110110
<extensions>true</extensions>
111111
<configuration>
112-
<serverId>sonatype-nexus-staging</serverId>
113-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
114-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
112+
<publishingServerId>central</publishingServerId>
113+
<autoPublish>true</autoPublish>
114+
<waitUntil>published</waitUntil>
115115
</configuration>
116116
</plugin>
117117
</plugins>
Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,22 @@
1515
package com.aliyuncs.qualitycheck.model.v20190115;
1616

1717
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
1819
import com.aliyuncs.http.MethodType;
1920

2021
/**
2122
* @author auto create
2223
* @version
2324
*/
24-
public class CreateUserRequest extends RpcAcsRequest<CreateUserResponse> {
25+
public class ApplyWsTokenRequest extends RpcAcsRequest<ApplyWsTokenResponse> {
2526

2627

2728
private String jsonStr;
2829

2930
private Long baseMeAgentId;
30-
public CreateUserRequest() {
31-
super("Qualitycheck", "2019-01-15", "CreateUser");
31+
public ApplyWsTokenRequest() {
32+
super("Qualitycheck", "2019-01-15", "ApplyWsToken");
33+
setProtocol(ProtocolType.HTTPS);
3234
setMethod(MethodType.POST);
3335
}
3436

@@ -55,8 +57,8 @@ public void setBaseMeAgentId(Long baseMeAgentId) {
5557
}
5658

5759
@Override
58-
public Class<CreateUserResponse> getResponseClass() {
59-
return CreateUserResponse.class;
60+
public Class<ApplyWsTokenResponse> getResponseClass() {
61+
return ApplyWsTokenResponse.class;
6062
}
6163

6264
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.qualitycheck.model.v20190115;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.qualitycheck.transform.v20190115.ApplyWsTokenResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class ApplyWsTokenResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String code;
30+
31+
private Integer httpStatusCode;
32+
33+
private Data data;
34+
35+
public String getRequestId() {
36+
return this.requestId;
37+
}
38+
39+
public void setRequestId(String requestId) {
40+
this.requestId = requestId;
41+
}
42+
43+
public String getCode() {
44+
return this.code;
45+
}
46+
47+
public void setCode(String code) {
48+
this.code = code;
49+
}
50+
51+
public Integer getHttpStatusCode() {
52+
return this.httpStatusCode;
53+
}
54+
55+
public void setHttpStatusCode(Integer httpStatusCode) {
56+
this.httpStatusCode = httpStatusCode;
57+
}
58+
59+
public Data getData() {
60+
return this.data;
61+
}
62+
63+
public void setData(Data data) {
64+
this.data = data;
65+
}
66+
67+
public static class Data {
68+
69+
private String sessionId;
70+
71+
private String token;
72+
73+
private String wsEndpoint;
74+
75+
public String getSessionId() {
76+
return this.sessionId;
77+
}
78+
79+
public void setSessionId(String sessionId) {
80+
this.sessionId = sessionId;
81+
}
82+
83+
public String getToken() {
84+
return this.token;
85+
}
86+
87+
public void setToken(String token) {
88+
this.token = token;
89+
}
90+
91+
public String getWsEndpoint() {
92+
return this.wsEndpoint;
93+
}
94+
95+
public void setWsEndpoint(String wsEndpoint) {
96+
this.wsEndpoint = wsEndpoint;
97+
}
98+
}
99+
100+
@Override
101+
public ApplyWsTokenResponse getInstance(UnmarshallerContext context) {
102+
return ApplyWsTokenResponseUnmarshaller.unmarshall(this, context);
103+
}
104+
105+
@Override
106+
public boolean checkShowJsonItemName() {
107+
return false;
108+
}
109+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.qualitycheck.model.v20190115;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateMiningTaskRequest extends RpcAcsRequest<CreateMiningTaskResponse> {
26+
27+
28+
private String taskType;
29+
30+
private String filePath;
31+
32+
private String param;
33+
34+
private String callbackUrl;
35+
36+
private Long baseMeAgentId;
37+
public CreateMiningTaskRequest() {
38+
super("Qualitycheck", "2019-01-15", "CreateMiningTask");
39+
setProtocol(ProtocolType.HTTPS);
40+
setMethod(MethodType.POST);
41+
}
42+
43+
public String getTaskType() {
44+
return this.taskType;
45+
}
46+
47+
public void setTaskType(String taskType) {
48+
this.taskType = taskType;
49+
if(taskType != null){
50+
putBodyParameter("TaskType", taskType);
51+
}
52+
}
53+
54+
public String getFilePath() {
55+
return this.filePath;
56+
}
57+
58+
public void setFilePath(String filePath) {
59+
this.filePath = filePath;
60+
if(filePath != null){
61+
putBodyParameter("FilePath", filePath);
62+
}
63+
}
64+
65+
public String getParam() {
66+
return this.param;
67+
}
68+
69+
public void setParam(String param) {
70+
this.param = param;
71+
if(param != null){
72+
putBodyParameter("Param", param);
73+
}
74+
}
75+
76+
public String getCallbackUrl() {
77+
return this.callbackUrl;
78+
}
79+
80+
public void setCallbackUrl(String callbackUrl) {
81+
this.callbackUrl = callbackUrl;
82+
if(callbackUrl != null){
83+
putBodyParameter("CallbackUrl", callbackUrl);
84+
}
85+
}
86+
87+
public Long getBaseMeAgentId() {
88+
return this.baseMeAgentId;
89+
}
90+
91+
public void setBaseMeAgentId(Long baseMeAgentId) {
92+
this.baseMeAgentId = baseMeAgentId;
93+
if(baseMeAgentId != null){
94+
putQueryParameter("BaseMeAgentId", baseMeAgentId.toString());
95+
}
96+
}
97+
98+
@Override
99+
public Class<CreateMiningTaskResponse> getResponseClass() {
100+
return CreateMiningTaskResponse.class;
101+
}
102+
103+
}

0 commit comments

Comments
 (0)