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

Skip to content

Commit 030fec2

Browse files
committed
CAS SDK Auto Released By lihai.zhang,Version:2.1.07130214
发布日志: 1, fixed bugs . 2, new version: 2.1.07130214. 3, class: DescribeUserCertificateListResponse
1 parent f46f6d4 commit 030fec2

19 files changed

+1218
-8
lines changed

aliyun-java-sdk-cas/ChangeLog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-02-14 Version: 2.1.07130214
2+
1, fixed bugs .
3+
2, new version: 2.1.07130214.
4+
3, class: DescribeUserCertificateListResponse
5+
16
2018-07-31 Version: 2.0.0713
27
1, This is 2.0.0713 version log.
38
2, This version only supports user certificate list queries.

aliyun-java-sdk-cas/pom.xml

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-cas</artifactId>
55
<packaging>jar</packaging>
6-
<version>2.0.0713</version>
6+
<version>2.1.07130214</version>
77
<name>aliyun-java-sdk-cas</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: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
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.cas.model.v20180713;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class CreateDVOrderAuditRequest extends RpcAcsRequest<CreateDVOrderAuditResponse> {
24+
25+
public CreateDVOrderAuditRequest() {
26+
super("cas", "2018-07-13", "CreateDVOrderAudit", "cas");
27+
}
28+
29+
private String instanceId;
30+
31+
private String sourceIp;
32+
33+
private String province;
34+
35+
private String city;
36+
37+
private String domain;
38+
39+
private String domainVerifyType;
40+
41+
private String mobile;
42+
43+
private String lang;
44+
45+
private String email;
46+
47+
private String username;
48+
49+
public String getInstanceId() {
50+
return this.instanceId;
51+
}
52+
53+
public void setInstanceId(String instanceId) {
54+
this.instanceId = instanceId;
55+
if(instanceId != null){
56+
putQueryParameter("InstanceId", instanceId);
57+
}
58+
}
59+
60+
public String getSourceIp() {
61+
return this.sourceIp;
62+
}
63+
64+
public void setSourceIp(String sourceIp) {
65+
this.sourceIp = sourceIp;
66+
if(sourceIp != null){
67+
putQueryParameter("SourceIp", sourceIp);
68+
}
69+
}
70+
71+
public String getProvince() {
72+
return this.province;
73+
}
74+
75+
public void setProvince(String province) {
76+
this.province = province;
77+
if(province != null){
78+
putQueryParameter("Province", province);
79+
}
80+
}
81+
82+
public String getCity() {
83+
return this.city;
84+
}
85+
86+
public void setCity(String city) {
87+
this.city = city;
88+
if(city != null){
89+
putQueryParameter("City", city);
90+
}
91+
}
92+
93+
public String getBizDomain() {
94+
return this.domain;
95+
}
96+
97+
public void setBizDomain(String domain) {
98+
this.domain = domain;
99+
if(domain != null){
100+
putQueryParameter("Domain", domain);
101+
}
102+
}
103+
104+
/**
105+
* @deprecated use getBizDomain instead of this.
106+
*/
107+
@Deprecated
108+
public String getDomain() {
109+
return this.domain;
110+
}
111+
112+
/**
113+
* @deprecated use setBizDomain instead of this.
114+
*/
115+
@Deprecated
116+
public void setDomain(String domain) {
117+
this.domain = domain;
118+
if(domain != null){
119+
putQueryParameter("Domain", domain);
120+
}
121+
}
122+
123+
public String getDomainVerifyType() {
124+
return this.domainVerifyType;
125+
}
126+
127+
public void setDomainVerifyType(String domainVerifyType) {
128+
this.domainVerifyType = domainVerifyType;
129+
if(domainVerifyType != null){
130+
putQueryParameter("DomainVerifyType", domainVerifyType);
131+
}
132+
}
133+
134+
public String getMobile() {
135+
return this.mobile;
136+
}
137+
138+
public void setMobile(String mobile) {
139+
this.mobile = mobile;
140+
if(mobile != null){
141+
putQueryParameter("Mobile", mobile);
142+
}
143+
}
144+
145+
public String getLang() {
146+
return this.lang;
147+
}
148+
149+
public void setLang(String lang) {
150+
this.lang = lang;
151+
if(lang != null){
152+
putQueryParameter("Lang", lang);
153+
}
154+
}
155+
156+
public String getEmail() {
157+
return this.email;
158+
}
159+
160+
public void setEmail(String email) {
161+
this.email = email;
162+
if(email != null){
163+
putQueryParameter("Email", email);
164+
}
165+
}
166+
167+
public String getUsername() {
168+
return this.username;
169+
}
170+
171+
public void setUsername(String username) {
172+
this.username = username;
173+
if(username != null){
174+
putQueryParameter("Username", username);
175+
}
176+
}
177+
178+
@Override
179+
public Class<CreateDVOrderAuditResponse> getResponseClass() {
180+
return CreateDVOrderAuditResponse.class;
181+
}
182+
183+
}
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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.cas.model.v20180713;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.cas.transform.v20180713.CreateDVOrderAuditResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateDVOrderAuditResponse 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 CreateDVOrderAuditResponse getInstance(UnmarshallerContext context) {
39+
return CreateDVOrderAuditResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
42+
@Override
43+
public boolean checkShowJsonItemName() {
44+
return false;
45+
}
46+
}
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.cas.model.v20180713;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class CreateUserCertificateRequest extends RpcAcsRequest<CreateUserCertificateResponse> {
24+
25+
public CreateUserCertificateRequest() {
26+
super("cas", "2018-07-13", "CreateUserCertificate", "cas");
27+
}
28+
29+
private String sourceIp;
30+
31+
private String name;
32+
33+
private String cert;
34+
35+
private String lang;
36+
37+
private String key;
38+
39+
public String getSourceIp() {
40+
return this.sourceIp;
41+
}
42+
43+
public void setSourceIp(String sourceIp) {
44+
this.sourceIp = sourceIp;
45+
if(sourceIp != null){
46+
putQueryParameter("SourceIp", sourceIp);
47+
}
48+
}
49+
50+
public String getName() {
51+
return this.name;
52+
}
53+
54+
public void setName(String name) {
55+
this.name = name;
56+
if(name != null){
57+
putQueryParameter("Name", name);
58+
}
59+
}
60+
61+
public String getCert() {
62+
return this.cert;
63+
}
64+
65+
public void setCert(String cert) {
66+
this.cert = cert;
67+
if(cert != null){
68+
putQueryParameter("Cert", cert);
69+
}
70+
}
71+
72+
public String getLang() {
73+
return this.lang;
74+
}
75+
76+
public void setLang(String lang) {
77+
this.lang = lang;
78+
if(lang != null){
79+
putQueryParameter("Lang", lang);
80+
}
81+
}
82+
83+
public String getKey() {
84+
return this.key;
85+
}
86+
87+
public void setKey(String key) {
88+
this.key = key;
89+
if(key != null){
90+
putQueryParameter("Key", key);
91+
}
92+
}
93+
94+
@Override
95+
public Class<CreateUserCertificateResponse> getResponseClass() {
96+
return CreateUserCertificateResponse.class;
97+
}
98+
99+
}

0 commit comments

Comments
 (0)