Skip to content

Commit c9793e9

Browse files
committed
RETAILCLOUD SDK Auto Released By wb-mmw258555,Version:1.0.0
发布日志: 1, This is an example of release-log. 2, Please strictly follow this format to edit in English. 3, Format:Number + , + Space + Description
1 parent 2f3910f commit c9793e9

File tree

8 files changed

+433
-0
lines changed

8 files changed

+433
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2019-05-14 Version: 1.0.0
2+
1, This is an example of release-log.
3+
2, Please strictly follow this format to edit in English.
4+
3, Format:Number + , + Space + Description
5+

aliyun-java-sdk-retailcloud/pom.xml

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.aliyun</groupId>
4+
<artifactId>aliyun-java-sdk-retailcloud</artifactId>
5+
<packaging>jar</packaging>
6+
<version>1.0.0</version>
7+
<name>aliyun-java-sdk-retailcloud</name>
8+
<url>http://www.aliyun.com</url>
9+
<description>Aliyun Open API SDK for Java
10+
11+
Copyright (C) Alibaba Cloud Computing
12+
All rights reserved.
13+
14+
版权所有 (C)阿里云计算有限公司
15+
16+
http://www.aliyun.com</description>
17+
18+
<distributionManagement>
19+
<snapshotRepository>
20+
<id>sonatype-nexus-snapshots</id>
21+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
22+
</snapshotRepository>
23+
<repository>
24+
<id>sonatype-nexus-staging</id>
25+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
26+
</repository>
27+
</distributionManagement>
28+
29+
<dependencies>
30+
<dependency>
31+
<groupId>com.aliyun</groupId>
32+
<artifactId>aliyun-java-sdk-core</artifactId>
33+
<optional>true</optional>
34+
<version>[4.3.2,5.0.0)</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>com.google.code.gson</groupId>
38+
<artifactId>gson</artifactId>
39+
<version>2.8.5</version>
40+
</dependency>
41+
</dependencies>
42+
<licenses>
43+
<license>
44+
<name></name>
45+
<url></url>
46+
<distribution></distribution>
47+
</license>
48+
</licenses>
49+
<scm>
50+
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
51+
<developerConnection>scm:git:git@github.com:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
52+
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
53+
</scm>
54+
<developers>
55+
<developer>
56+
<id>aliyunproducts</id>
57+
<name>Aliyun SDK</name>
58+
<email>aliyunsdk@aliyun.com</email>
59+
</developer>
60+
</developers>
61+
<build>
62+
<plugins>
63+
<plugin>
64+
<artifactId>maven-compiler-plugin</artifactId>
65+
<version>2.3.2</version>
66+
<configuration>
67+
<source>1.6</source>
68+
<target>1.6</target>
69+
<encoding>UTF-8</encoding>
70+
</configuration>
71+
</plugin>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-jar-plugin</artifactId>
75+
<version>2.3.2</version>
76+
<configuration>
77+
<excludes>
78+
</excludes>
79+
</configuration>
80+
</plugin>
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-surefire-plugin</artifactId>
84+
<version>2.10</version>
85+
<configuration>
86+
<argLine>-Dfile.encoding=UTF-8</argLine>
87+
</configuration>
88+
</plugin>
89+
<plugin>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-javadoc-plugin</artifactId>
92+
<version>2.8</version>
93+
<configuration>
94+
<encoding>UTF-8</encoding>
95+
</configuration>
96+
</plugin>
97+
<plugin>
98+
<groupId>org.apache.maven.plugins</groupId>
99+
<artifactId>maven-gpg-plugin</artifactId>
100+
<version>1.5</version>
101+
<executions>
102+
<execution>
103+
<id>sign-artifacts</id>
104+
<phase>verify</phase>
105+
<goals>
106+
<goal>sign</goal>
107+
</goals>
108+
</execution>
109+
</executions>
110+
</plugin>
111+
<plugin>
112+
<groupId>org.sonatype.plugins</groupId>
113+
<artifactId>nexus-staging-maven-plugin</artifactId>
114+
<version>1.6.3</version>
115+
<extensions>true</extensions>
116+
<configuration>
117+
<serverId>sonatype-nexus-staging</serverId>
118+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
119+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
120+
</configuration>
121+
</plugin>
122+
</plugins>
123+
</build>
124+
</project>
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.retailcloud.model.v20180313;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class GetInstTransInfoRequest extends RpcAcsRequest<GetInstTransInfoResponse> {
24+
25+
public GetInstTransInfoRequest() {
26+
super("retailcloud", "2018-03-13", "GetInstTransInfo");
27+
}
28+
29+
private String aliyunUid;
30+
31+
private String aliyunEquipId;
32+
33+
private String aliyunCommodityCode;
34+
35+
public String getAliyunUid() {
36+
return this.aliyunUid;
37+
}
38+
39+
public void setAliyunUid(String aliyunUid) {
40+
this.aliyunUid = aliyunUid;
41+
if(aliyunUid != null){
42+
putBodyParameter("aliyunUid", aliyunUid);
43+
}
44+
}
45+
46+
public String getAliyunEquipId() {
47+
return this.aliyunEquipId;
48+
}
49+
50+
public void setAliyunEquipId(String aliyunEquipId) {
51+
this.aliyunEquipId = aliyunEquipId;
52+
if(aliyunEquipId != null){
53+
putBodyParameter("aliyunEquipId", aliyunEquipId);
54+
}
55+
}
56+
57+
public String getAliyunCommodityCode() {
58+
return this.aliyunCommodityCode;
59+
}
60+
61+
public void setAliyunCommodityCode(String aliyunCommodityCode) {
62+
this.aliyunCommodityCode = aliyunCommodityCode;
63+
if(aliyunCommodityCode != null){
64+
putBodyParameter("aliyunCommodityCode", aliyunCommodityCode);
65+
}
66+
}
67+
68+
@Override
69+
public Class<GetInstTransInfoResponse> getResponseClass() {
70+
return GetInstTransInfoResponse.class;
71+
}
72+
73+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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.retailcloud.model.v20180313;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.retailcloud.transform.v20180313.GetInstTransInfoResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class GetInstTransInfoResponse extends AcsResponse {
26+
27+
private String instanceId;
28+
29+
private Boolean isAutoRenew;
30+
31+
private Integer renewCycle;
32+
33+
private String chargeType;
34+
35+
private Long endTime;
36+
37+
private Long startTime;
38+
39+
public String getInstanceId() {
40+
return this.instanceId;
41+
}
42+
43+
public void setInstanceId(String instanceId) {
44+
this.instanceId = instanceId;
45+
}
46+
47+
public Boolean getIsAutoRenew() {
48+
return this.isAutoRenew;
49+
}
50+
51+
public void setIsAutoRenew(Boolean isAutoRenew) {
52+
this.isAutoRenew = isAutoRenew;
53+
}
54+
55+
public Integer getRenewCycle() {
56+
return this.renewCycle;
57+
}
58+
59+
public void setRenewCycle(Integer renewCycle) {
60+
this.renewCycle = renewCycle;
61+
}
62+
63+
public String getChargeType() {
64+
return this.chargeType;
65+
}
66+
67+
public void setChargeType(String chargeType) {
68+
this.chargeType = chargeType;
69+
}
70+
71+
public Long getEndTime() {
72+
return this.endTime;
73+
}
74+
75+
public void setEndTime(Long endTime) {
76+
this.endTime = endTime;
77+
}
78+
79+
public Long getStartTime() {
80+
return this.startTime;
81+
}
82+
83+
public void setStartTime(Long startTime) {
84+
this.startTime = startTime;
85+
}
86+
87+
@Override
88+
public GetInstTransInfoResponse getInstance(UnmarshallerContext context) {
89+
return GetInstTransInfoResponseUnmarshaller.unmarshall(this, context);
90+
}
91+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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.retailcloud.model.v20180313;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class ResourceStatusNotifyRequest extends RpcAcsRequest<ResourceStatusNotifyResponse> {
24+
25+
public ResourceStatusNotifyRequest() {
26+
super("retailcloud", "2018-03-13", "ResourceStatusNotify");
27+
}
28+
29+
private String data;
30+
31+
public String getData() {
32+
return this.data;
33+
}
34+
35+
public void setData(String data) {
36+
this.data = data;
37+
if(data != null){
38+
putBodyParameter("data", data);
39+
}
40+
}
41+
42+
@Override
43+
public Class<ResourceStatusNotifyResponse> getResponseClass() {
44+
return ResourceStatusNotifyResponse.class;
45+
}
46+
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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.retailcloud.model.v20180313;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.retailcloud.transform.v20180313.ResourceStatusNotifyResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class ResourceStatusNotifyResponse extends AcsResponse {
26+
27+
@Override
28+
public ResourceStatusNotifyResponse getInstance(UnmarshallerContext context) {
29+
return ResourceStatusNotifyResponseUnmarshaller.unmarshall(this, context);
30+
}
31+
}

0 commit comments

Comments
 (0)