Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dec5bd7

Browse files
committed
CCS SDK Auto Released By shenshi,Version:1.0.1
发布日志: 1, Update Dependency
1 parent 4c314ae commit dec5bd7

17 files changed

+705
-8
lines changed

aliyun-java-sdk-ccs/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-03-18 Version: 1.0.1
2+
1, Update Dependency
3+
14
2018-09-25 Version: 1.0.0
25
1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0
36

aliyun-java-sdk-ccs/pom.xml

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-ccs</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.0.0</version>
6+
<version>1.0.1</version>
77
<name>aliyun-java-sdk-ccs</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -31,7 +31,7 @@ http://www.aliyun.com</description>
3131
<groupId>com.aliyun</groupId>
3232
<artifactId>aliyun-java-sdk-core</artifactId>
3333
<optional>true</optional>
34-
<version>3.7.1</version>
34+
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
3636
</dependencies>
3737
<licenses>
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
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.ccs.model.v20171001;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
20+
/**
21+
* @author auto create
22+
* @version
23+
*/
24+
public class CreateTicketRequest extends RpcAcsRequest<CreateTicketResponse> {
25+
26+
public CreateTicketRequest() {
27+
super("Ccs", "2017-10-01", "CreateTicket", "ccs");
28+
setMethod(MethodType.POST);
29+
}
30+
31+
private String creatorId;
32+
33+
private String description;
34+
35+
private String type;
36+
37+
private String ccsInstanceId;
38+
39+
private String customFields;
40+
41+
public String getCreatorId() {
42+
return this.creatorId;
43+
}
44+
45+
public void setCreatorId(String creatorId) {
46+
this.creatorId = creatorId;
47+
if(creatorId != null){
48+
putQueryParameter("CreatorId", creatorId);
49+
}
50+
}
51+
52+
public String getDescription() {
53+
return this.description;
54+
}
55+
56+
public void setDescription(String description) {
57+
this.description = description;
58+
if(description != null){
59+
putQueryParameter("Description", description);
60+
}
61+
}
62+
63+
public String getType() {
64+
return this.type;
65+
}
66+
67+
public void setType(String type) {
68+
this.type = type;
69+
if(type != null){
70+
putQueryParameter("Type", type);
71+
}
72+
}
73+
74+
public String getCcsInstanceId() {
75+
return this.ccsInstanceId;
76+
}
77+
78+
public void setCcsInstanceId(String ccsInstanceId) {
79+
this.ccsInstanceId = ccsInstanceId;
80+
if(ccsInstanceId != null){
81+
putQueryParameter("CcsInstanceId", ccsInstanceId);
82+
}
83+
}
84+
85+
public String getCustomFields() {
86+
return this.customFields;
87+
}
88+
89+
public void setCustomFields(String customFields) {
90+
this.customFields = customFields;
91+
if(customFields != null){
92+
putQueryParameter("CustomFields", customFields);
93+
}
94+
}
95+
96+
@Override
97+
public Class<CreateTicketResponse> getResponseClass() {
98+
return CreateTicketResponse.class;
99+
}
100+
101+
}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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.ccs.model.v20171001;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.ccs.transform.v20171001.CreateTicketResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateTicketResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String id;
30+
31+
public String getRequestId() {
32+
return this.requestId;
33+
}
34+
35+
public void setRequestId(String requestId) {
36+
this.requestId = requestId;
37+
}
38+
39+
public String getId() {
40+
return this.id;
41+
}
42+
43+
public void setId(String id) {
44+
this.id = id;
45+
}
46+
47+
@Override
48+
public CreateTicketResponse getInstance(UnmarshallerContext context) {
49+
return CreateTicketResponseUnmarshaller.unmarshall(this, context);
50+
}
51+
}

aliyun-java-sdk-ccs/src/main/java/com/aliyuncs/ccs/model/v20171001/GetHotlineRecordRequest.java

100755100644
File mode changed.

aliyun-java-sdk-ccs/src/main/java/com/aliyuncs/ccs/model/v20171001/GetHotlineRecordResponse.java

100755100644
File mode changed.
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
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.ccs.model.v20171001;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class ProceedTicketRequest extends RpcAcsRequest<ProceedTicketResponse> {
24+
25+
public ProceedTicketRequest() {
26+
super("Ccs", "2017-10-01", "ProceedTicket", "ccs");
27+
}
28+
29+
private String memo;
30+
31+
private String id;
32+
33+
private String ccsInstanceId;
34+
35+
private String operation;
36+
37+
private String operatorId;
38+
39+
public String getMemo() {
40+
return this.memo;
41+
}
42+
43+
public void setMemo(String memo) {
44+
this.memo = memo;
45+
if(memo != null){
46+
putQueryParameter("Memo", memo);
47+
}
48+
}
49+
50+
public String getId() {
51+
return this.id;
52+
}
53+
54+
public void setId(String id) {
55+
this.id = id;
56+
if(id != null){
57+
putQueryParameter("Id", id);
58+
}
59+
}
60+
61+
public String getCcsInstanceId() {
62+
return this.ccsInstanceId;
63+
}
64+
65+
public void setCcsInstanceId(String ccsInstanceId) {
66+
this.ccsInstanceId = ccsInstanceId;
67+
if(ccsInstanceId != null){
68+
putQueryParameter("CcsInstanceId", ccsInstanceId);
69+
}
70+
}
71+
72+
public String getOperation() {
73+
return this.operation;
74+
}
75+
76+
public void setOperation(String operation) {
77+
this.operation = operation;
78+
if(operation != null){
79+
putQueryParameter("Operation", operation);
80+
}
81+
}
82+
83+
public String getOperatorId() {
84+
return this.operatorId;
85+
}
86+
87+
public void setOperatorId(String operatorId) {
88+
this.operatorId = operatorId;
89+
if(operatorId != null){
90+
putQueryParameter("OperatorId", operatorId);
91+
}
92+
}
93+
94+
@Override
95+
public Class<ProceedTicketResponse> getResponseClass() {
96+
return ProceedTicketResponse.class;
97+
}
98+
99+
}
Lines changed: 41 additions & 0 deletions
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.ccs.model.v20171001;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.ccs.transform.v20171001.ProceedTicketResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class ProceedTicketResponse 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 ProceedTicketResponse getInstance(UnmarshallerContext context) {
39+
return ProceedTicketResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
}

aliyun-java-sdk-ccs/src/main/java/com/aliyuncs/ccs/model/v20171001/QueryHotlineRecordRequest.java

100755100644
File mode changed.

aliyun-java-sdk-ccs/src/main/java/com/aliyuncs/ccs/model/v20171001/QueryHotlineRecordResponse.java

100755100644
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class QueryHotlineRecordResponse extends AcsResponse {
2727

2828
private String requestId;
2929

30-
private Integer totalCount;
30+
private Long totalCount;
3131

3232
private Integer pageNum;
3333

@@ -43,11 +43,11 @@ public void setRequestId(String requestId) {
4343
this.requestId = requestId;
4444
}
4545

46-
public Integer getTotalCount() {
46+
public Long getTotalCount() {
4747
return this.totalCount;
4848
}
4949

50-
public void setTotalCount(Integer totalCount) {
50+
public void setTotalCount(Long totalCount) {
5151
this.totalCount = totalCount;
5252
}
5353

0 commit comments

Comments
 (0)