Skip to content

Commit 986186d

Browse files
committed
DOMAIN-INTL SDK Auto Released By honglliang_whl,Version:1.6.0
发布日志: 1, Add three new apis, SaveSingleTaskForSaveArtExtension, QueryArtExtension and CancelTask.
1 parent 3c21d10 commit 986186d

11 files changed

+681
-1
lines changed

aliyun-java-sdk-domain-intl/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-05-13 Version: 1.6.0
2+
1, Add three new apis, SaveSingleTaskForSaveArtExtension, QueryArtExtension and CancelTask.
3+
14
2019-04-23 Version: 1.5.0
25
1, Add a new api, QueryDomainByDomainName.
36

aliyun-java-sdk-domain-intl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-domain-intl</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.5.0</version>
6+
<version>1.6.0</version>
77
<name>aliyun-java-sdk-domain-intl</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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.domain_intl.model.v20171218;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class CancelTaskRequest extends RpcAcsRequest<CancelTaskResponse> {
24+
25+
public CancelTaskRequest() {
26+
super("Domain-intl", "2017-12-18", "CancelTask", "domain");
27+
}
28+
29+
private String userClientIp;
30+
31+
private String taskNo;
32+
33+
private String lang;
34+
35+
public String getUserClientIp() {
36+
return this.userClientIp;
37+
}
38+
39+
public void setUserClientIp(String userClientIp) {
40+
this.userClientIp = userClientIp;
41+
if(userClientIp != null){
42+
putQueryParameter("UserClientIp", userClientIp);
43+
}
44+
}
45+
46+
public String getTaskNo() {
47+
return this.taskNo;
48+
}
49+
50+
public void setTaskNo(String taskNo) {
51+
this.taskNo = taskNo;
52+
if(taskNo != null){
53+
putQueryParameter("TaskNo", taskNo);
54+
}
55+
}
56+
57+
public String getLang() {
58+
return this.lang;
59+
}
60+
61+
public void setLang(String lang) {
62+
this.lang = lang;
63+
if(lang != null){
64+
putQueryParameter("Lang", lang);
65+
}
66+
}
67+
68+
@Override
69+
public Class<CancelTaskResponse> getResponseClass() {
70+
return CancelTaskResponse.class;
71+
}
72+
73+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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.domain_intl.model.v20171218;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.domain_intl.transform.v20171218.CancelTaskResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CancelTaskResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
public String getRequestId() {
30+
return this.requestId;
31+
}
32+
33+
public void setRequestId(String requestId) {
34+
this.requestId = requestId;
35+
}
36+
37+
@Override
38+
public CancelTaskResponse getInstance(UnmarshallerContext context) {
39+
return CancelTaskResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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.domain_intl.model.v20171218;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class QueryArtExtensionRequest extends RpcAcsRequest<QueryArtExtensionResponse> {
24+
25+
public QueryArtExtensionRequest() {
26+
super("Domain-intl", "2017-12-18", "QueryArtExtension", "domain");
27+
}
28+
29+
private String domainName;
30+
31+
private String userClientIp;
32+
33+
private String lang;
34+
35+
public String getDomainName() {
36+
return this.domainName;
37+
}
38+
39+
public void setDomainName(String domainName) {
40+
this.domainName = domainName;
41+
if(domainName != null){
42+
putQueryParameter("DomainName", domainName);
43+
}
44+
}
45+
46+
public String getUserClientIp() {
47+
return this.userClientIp;
48+
}
49+
50+
public void setUserClientIp(String userClientIp) {
51+
this.userClientIp = userClientIp;
52+
if(userClientIp != null){
53+
putQueryParameter("UserClientIp", userClientIp);
54+
}
55+
}
56+
57+
public String getLang() {
58+
return this.lang;
59+
}
60+
61+
public void setLang(String lang) {
62+
this.lang = lang;
63+
if(lang != null){
64+
putQueryParameter("Lang", lang);
65+
}
66+
}
67+
68+
@Override
69+
public Class<QueryArtExtensionResponse> getResponseClass() {
70+
return QueryArtExtensionResponse.class;
71+
}
72+
73+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
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.domain_intl.model.v20171218;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.domain_intl.transform.v20171218.QueryArtExtensionResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class QueryArtExtensionResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String objectType;
30+
31+
private String materialsAndTechniques;
32+
33+
private String dimensions;
34+
35+
private String title;
36+
37+
private String dateOrPeriod;
38+
39+
private String maker;
40+
41+
private String inscriptionsAndMarkings;
42+
43+
private String subject;
44+
45+
private String features;
46+
47+
private String reference;
48+
49+
public String getRequestId() {
50+
return this.requestId;
51+
}
52+
53+
public void setRequestId(String requestId) {
54+
this.requestId = requestId;
55+
}
56+
57+
public String getObjectType() {
58+
return this.objectType;
59+
}
60+
61+
public void setObjectType(String objectType) {
62+
this.objectType = objectType;
63+
}
64+
65+
public String getMaterialsAndTechniques() {
66+
return this.materialsAndTechniques;
67+
}
68+
69+
public void setMaterialsAndTechniques(String materialsAndTechniques) {
70+
this.materialsAndTechniques = materialsAndTechniques;
71+
}
72+
73+
public String getDimensions() {
74+
return this.dimensions;
75+
}
76+
77+
public void setDimensions(String dimensions) {
78+
this.dimensions = dimensions;
79+
}
80+
81+
public String getTitle() {
82+
return this.title;
83+
}
84+
85+
public void setTitle(String title) {
86+
this.title = title;
87+
}
88+
89+
public String getDateOrPeriod() {
90+
return this.dateOrPeriod;
91+
}
92+
93+
public void setDateOrPeriod(String dateOrPeriod) {
94+
this.dateOrPeriod = dateOrPeriod;
95+
}
96+
97+
public String getMaker() {
98+
return this.maker;
99+
}
100+
101+
public void setMaker(String maker) {
102+
this.maker = maker;
103+
}
104+
105+
public String getInscriptionsAndMarkings() {
106+
return this.inscriptionsAndMarkings;
107+
}
108+
109+
public void setInscriptionsAndMarkings(String inscriptionsAndMarkings) {
110+
this.inscriptionsAndMarkings = inscriptionsAndMarkings;
111+
}
112+
113+
public String getSubject() {
114+
return this.subject;
115+
}
116+
117+
public void setSubject(String subject) {
118+
this.subject = subject;
119+
}
120+
121+
public String getFeatures() {
122+
return this.features;
123+
}
124+
125+
public void setFeatures(String features) {
126+
this.features = features;
127+
}
128+
129+
public String getReference() {
130+
return this.reference;
131+
}
132+
133+
public void setReference(String reference) {
134+
this.reference = reference;
135+
}
136+
137+
@Override
138+
public QueryArtExtensionResponse getInstance(UnmarshallerContext context) {
139+
return QueryArtExtensionResponseUnmarshaller.unmarshall(this, context);
140+
}
141+
142+
@Override
143+
public boolean checkShowJsonItemName() {
144+
return false;
145+
}
146+
}

0 commit comments

Comments
 (0)