Skip to content

Commit d2585d0

Browse files
committed
DYPNSAPI SDK Auto Released By shenshi,Version:1.0.2
发布日志: 1, Distinguish between system and service parameters
1 parent 2101bb8 commit d2585d0

14 files changed

Lines changed: 478 additions & 255 deletions

aliyun-java-sdk-dypnsapi/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-03-13 Version: 1.0.2
2+
1, Distinguish between system and service parameters
3+
14
2018-07-26 Version: 1.0.1
25
1, This is an example of release-log.
36
2, Please strictly follow this format to edit in English.

aliyun-java-sdk-dypnsapi/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-dypnsapi</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.0.1</version>
6+
<version>1.0.2</version>
77
<name>aliyun-java-sdk-dypnsapi</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: 153 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
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.dypnsapi.model.v20170525;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
20+
/**
21+
* @author auto create
22+
* @version
23+
*/
24+
public class CreateVerifySchemeRequest extends RpcAcsRequest<CreateVerifySchemeResponse> {
25+
26+
public CreateVerifySchemeRequest() {
27+
super("Dypnsapi", "2017-05-25", "CreateVerifyScheme", "dypnsapi");
28+
setMethod(MethodType.POST);
29+
}
30+
31+
private Long resourceOwnerId;
32+
33+
private String packName;
34+
35+
private String appName;
36+
37+
private String resourceOwnerAccount;
38+
39+
private String schemeName;
40+
41+
private String bundleId;
42+
43+
private String osType;
44+
45+
private Long ownerId;
46+
47+
private String packSign;
48+
49+
public Long getResourceOwnerId() {
50+
return this.resourceOwnerId;
51+
}
52+
53+
public void setResourceOwnerId(Long resourceOwnerId) {
54+
this.resourceOwnerId = resourceOwnerId;
55+
if(resourceOwnerId != null){
56+
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
57+
}
58+
}
59+
60+
public String getPackName() {
61+
return this.packName;
62+
}
63+
64+
public void setPackName(String packName) {
65+
this.packName = packName;
66+
if(packName != null){
67+
putQueryParameter("PackName", packName);
68+
}
69+
}
70+
71+
public String getAppName() {
72+
return this.appName;
73+
}
74+
75+
public void setAppName(String appName) {
76+
this.appName = appName;
77+
if(appName != null){
78+
putQueryParameter("AppName", appName);
79+
}
80+
}
81+
82+
public String getResourceOwnerAccount() {
83+
return this.resourceOwnerAccount;
84+
}
85+
86+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
87+
this.resourceOwnerAccount = resourceOwnerAccount;
88+
if(resourceOwnerAccount != null){
89+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
90+
}
91+
}
92+
93+
public String getSchemeName() {
94+
return this.schemeName;
95+
}
96+
97+
public void setSchemeName(String schemeName) {
98+
this.schemeName = schemeName;
99+
if(schemeName != null){
100+
putQueryParameter("SchemeName", schemeName);
101+
}
102+
}
103+
104+
public String getBundleId() {
105+
return this.bundleId;
106+
}
107+
108+
public void setBundleId(String bundleId) {
109+
this.bundleId = bundleId;
110+
if(bundleId != null){
111+
putQueryParameter("BundleId", bundleId);
112+
}
113+
}
114+
115+
public String getOsType() {
116+
return this.osType;
117+
}
118+
119+
public void setOsType(String osType) {
120+
this.osType = osType;
121+
if(osType != null){
122+
putQueryParameter("OsType", osType);
123+
}
124+
}
125+
126+
public Long getOwnerId() {
127+
return this.ownerId;
128+
}
129+
130+
public void setOwnerId(Long ownerId) {
131+
this.ownerId = ownerId;
132+
if(ownerId != null){
133+
putQueryParameter("OwnerId", ownerId.toString());
134+
}
135+
}
136+
137+
public String getPackSign() {
138+
return this.packSign;
139+
}
140+
141+
public void setPackSign(String packSign) {
142+
this.packSign = packSign;
143+
if(packSign != null){
144+
putQueryParameter("PackSign", packSign);
145+
}
146+
}
147+
148+
@Override
149+
public Class<CreateVerifySchemeResponse> getResponseClass() {
150+
return CreateVerifySchemeResponse.class;
151+
}
152+
153+
}
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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.dypnsapi.model.v20170525;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.dypnsapi.transform.v20170525.CreateVerifySchemeResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateVerifySchemeResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String code;
30+
31+
private String message;
32+
33+
private GateVerifySchemeDTO gateVerifySchemeDTO;
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 String getMessage() {
52+
return this.message;
53+
}
54+
55+
public void setMessage(String message) {
56+
this.message = message;
57+
}
58+
59+
public GateVerifySchemeDTO getGateVerifySchemeDTO() {
60+
return this.gateVerifySchemeDTO;
61+
}
62+
63+
public void setGateVerifySchemeDTO(GateVerifySchemeDTO gateVerifySchemeDTO) {
64+
this.gateVerifySchemeDTO = gateVerifySchemeDTO;
65+
}
66+
67+
public static class GateVerifySchemeDTO {
68+
69+
private String schemeCode;
70+
71+
public String getSchemeCode() {
72+
return this.schemeCode;
73+
}
74+
75+
public void setSchemeCode(String schemeCode) {
76+
this.schemeCode = schemeCode;
77+
}
78+
}
79+
80+
@Override
81+
public CreateVerifySchemeResponse getInstance(UnmarshallerContext context) {
82+
return CreateVerifySchemeResponseUnmarshaller.unmarshall(this, context);
83+
}
84+
}

aliyun-java-sdk-dypnsapi/src/main/java/com/aliyuncs/dypnsapi/model/v20170525/GatewayVerifyInitializationResponse.java

Lines changed: 0 additions & 115 deletions
This file was deleted.

0 commit comments

Comments
 (0)