Skip to content

Commit 9882210

Browse files
committed
ARMS4FINANCE SDK Auto Released By shenshi,Version:2.0.1
发布日志: 1, Update Dependency
1 parent e1e4300 commit 9882210

File tree

8 files changed

+90
-90
lines changed

8 files changed

+90
-90
lines changed

aliyun-java-sdk-arms4finance/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: 2.0.1
2+
1, Update Dependency
3+
14
2017-12-08 Version: 2.0.0
25
1, Add ARMSQueryDataSet, WhereInDimQuery interface.
36

aliyun-java-sdk-arms4finance/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-arms4finance</artifactId>
55
<packaging>jar</packaging>
6-
<version>2.0.0</version>
6+
<version>2.0.1</version>
77
<name>aliyun-java-sdk-arms4finance</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.2.8</version>
34+
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
3636
</dependencies>
3737
<licenses>
@@ -42,8 +42,9 @@ http://www.aliyun.com</description>
4242
</license>
4343
</licenses>
4444
<scm>
45-
<url></url>
46-
<connection></connection>
45+
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
46+
<developerConnection>scm:git:git@github.com:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
47+
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
4748
</scm>
4849
<developers>
4950
<developer>

aliyun-java-sdk-arms4finance/src/main/java/com/aliyuncs/arms4finance/model/v20171130/ARMSQueryDataSetRequest.java

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
/*
2-
* Licensed to the Apache Software Foundation (ASF) under one
3-
* or more contributor license agreements. See the NOTICE file
4-
* distributed with this work for additional information
5-
* regarding copyright ownership. The ASF licenses this file
6-
* to you under the Apache License, Version 2.0 (the
7-
* "License"); you may not use this file except in compliance
8-
* with the License. You may obtain a copy of the License at
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
95
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
6+
* http://www.apache.org/licenses/LICENSE-2.0
117
*
12-
* Unless required by applicable law or agreed to in writing,
13-
* software distributed under the License is distributed on an
14-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15-
* KIND, either express or implied. See the License for the
16-
* specific language governing permissions and limitations
17-
* under the License.
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.
1813
*/
14+
1915
package com.aliyuncs.arms4finance.model.v20171130;
2016

2117
import com.aliyuncs.RpcAcsRequest;
@@ -28,7 +24,7 @@
2824
public class ARMSQueryDataSetRequest extends RpcAcsRequest<ARMSQueryDataSetResponse> {
2925

3026
public ARMSQueryDataSetRequest() {
31-
super("ARMS4FINANCE", "2017-11-30", "ARMSQueryDataSet");
27+
super("ARMS4FINANCE", "2017-11-30", "ARMSQueryDataSet", "arms4finance");
3228
}
3329

3430
private List<String> measuress;
@@ -134,25 +130,17 @@ public void setDimensionss(List<Dimensions> dimensionss) {
134130
this.dimensionss = dimensionss;
135131
if (dimensionss != null) {
136132
for (int depth1 = 0; depth1 < dimensionss.size(); depth1++) {
137-
putQueryParameter("Dimensions." + (depth1 + 1) + ".Key" , dimensionss.get(depth1).getKey());
138133
putQueryParameter("Dimensions." + (depth1 + 1) + ".Value" , dimensionss.get(depth1).getValue());
134+
putQueryParameter("Dimensions." + (depth1 + 1) + ".Key" , dimensionss.get(depth1).getKey());
139135
}
140136
}
141137
}
142138

143139
public static class Dimensions {
144140

145-
private String key;
146-
147141
private String value;
148142

149-
public String getKey() {
150-
return this.key;
151-
}
152-
153-
public void setKey(String key) {
154-
this.key = key;
155-
}
143+
private String key;
156144

157145
public String getValue() {
158146
return this.value;
@@ -161,6 +149,14 @@ public String getValue() {
161149
public void setValue(String value) {
162150
this.value = value;
163151
}
152+
153+
public String getKey() {
154+
return this.key;
155+
}
156+
157+
public void setKey(String key) {
158+
this.key = key;
159+
}
164160
}
165161

166162
@Override

aliyun-java-sdk-arms4finance/src/main/java/com/aliyuncs/arms4finance/model/v20171130/ARMSQueryDataSetResponse.java

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14+
1415
package com.aliyuncs.arms4finance.model.v20171130;
1516

1617
import com.aliyuncs.AcsResponse;
@@ -21,20 +22,20 @@
2122
* @author auto create
2223
* @version
2324
*/
24-
public class ARMSQueryDataSetResponse extends AcsResponse {
25-
26-
private String data;
27-
28-
public String getData() {
29-
return this.data;
30-
}
31-
32-
public void setData(String data) {
33-
this.data = data;
34-
}
35-
36-
@Override
37-
public ARMSQueryDataSetResponse getInstance(UnmarshallerContext context) {
38-
return ARMSQueryDataSetResponseUnmarshaller.unmarshall(this, context);
39-
}
25+
public class ARMSQueryDataSetResponse extends AcsResponse {
26+
27+
private String data;
28+
29+
public String getData() {
30+
return this.data;
31+
}
32+
33+
public void setData(String data) {
34+
this.data = data;
35+
}
36+
37+
@Override
38+
public ARMSQueryDataSetResponse getInstance(UnmarshallerContext context) {
39+
return ARMSQueryDataSetResponseUnmarshaller.unmarshall(this, context);
40+
}
4041
}

aliyun-java-sdk-arms4finance/src/main/java/com/aliyuncs/arms4finance/model/v20171130/WhereInDimQueryRequest.java

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
/*
2-
* Licensed to the Apache Software Foundation (ASF) under one
3-
* or more contributor license agreements. See the NOTICE file
4-
* distributed with this work for additional information
5-
* regarding copyright ownership. The ASF licenses this file
6-
* to you under the Apache License, Version 2.0 (the
7-
* "License"); you may not use this file except in compliance
8-
* with the License. You may obtain a copy of the License at
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
95
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
6+
* http://www.apache.org/licenses/LICENSE-2.0
117
*
12-
* Unless required by applicable law or agreed to in writing,
13-
* software distributed under the License is distributed on an
14-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15-
* KIND, either express or implied. See the License for the
16-
* specific language governing permissions and limitations
17-
* under the License.
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.
1813
*/
14+
1915
package com.aliyuncs.arms4finance.model.v20171130;
2016

2117
import com.aliyuncs.RpcAcsRequest;
@@ -28,7 +24,7 @@
2824
public class WhereInDimQueryRequest extends RpcAcsRequest<WhereInDimQueryResponse> {
2925

3026
public WhereInDimQueryRequest() {
31-
super("ARMS4FINANCE", "2017-11-30", "WhereInDimQuery");
27+
super("ARMS4FINANCE", "2017-11-30", "WhereInDimQuery", "arms4finance");
3228
}
3329

3430
private String whereInKey;
@@ -162,25 +158,17 @@ public void setDimensionss(List<Dimensions> dimensionss) {
162158
this.dimensionss = dimensionss;
163159
if (dimensionss != null) {
164160
for (int depth1 = 0; depth1 < dimensionss.size(); depth1++) {
165-
putQueryParameter("Dimensions." + (depth1 + 1) + ".Key" , dimensionss.get(depth1).getKey());
166161
putQueryParameter("Dimensions." + (depth1 + 1) + ".Value" , dimensionss.get(depth1).getValue());
162+
putQueryParameter("Dimensions." + (depth1 + 1) + ".Key" , dimensionss.get(depth1).getKey());
167163
}
168164
}
169165
}
170166

171167
public static class Dimensions {
172168

173-
private String key;
174-
175169
private String value;
176170

177-
public String getKey() {
178-
return this.key;
179-
}
180-
181-
public void setKey(String key) {
182-
this.key = key;
183-
}
171+
private String key;
184172

185173
public String getValue() {
186174
return this.value;
@@ -189,6 +177,14 @@ public String getValue() {
189177
public void setValue(String value) {
190178
this.value = value;
191179
}
180+
181+
public String getKey() {
182+
return this.key;
183+
}
184+
185+
public void setKey(String key) {
186+
this.key = key;
187+
}
192188
}
193189

194190
@Override

aliyun-java-sdk-arms4finance/src/main/java/com/aliyuncs/arms4finance/model/v20171130/WhereInDimQueryResponse.java

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14+
1415
package com.aliyuncs.arms4finance.model.v20171130;
1516

1617
import com.aliyuncs.AcsResponse;
@@ -21,20 +22,20 @@
2122
* @author auto create
2223
* @version
2324
*/
24-
public class WhereInDimQueryResponse extends AcsResponse {
25-
26-
private String data;
27-
28-
public String getData() {
29-
return this.data;
30-
}
31-
32-
public void setData(String data) {
33-
this.data = data;
34-
}
35-
36-
@Override
37-
public WhereInDimQueryResponse getInstance(UnmarshallerContext context) {
38-
return WhereInDimQueryResponseUnmarshaller.unmarshall(this, context);
39-
}
25+
public class WhereInDimQueryResponse extends AcsResponse {
26+
27+
private String data;
28+
29+
public String getData() {
30+
return this.data;
31+
}
32+
33+
public void setData(String data) {
34+
this.data = data;
35+
}
36+
37+
@Override
38+
public WhereInDimQueryResponse getInstance(UnmarshallerContext context) {
39+
return WhereInDimQueryResponseUnmarshaller.unmarshall(this, context);
40+
}
4041
}

aliyun-java-sdk-arms4finance/src/main/java/com/aliyuncs/arms4finance/transform/v20171130/ARMSQueryDataSetResponseUnmarshaller.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,17 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.aliyuncs.arms4finance.transform.v20171130;
1514

15+
package com.aliyuncs.arms4finance.transform.v20171130;
16+
1617
import com.aliyuncs.arms4finance.model.v20171130.ARMSQueryDataSetResponse;
1718
import com.aliyuncs.transform.UnmarshallerContext;
1819

1920

2021
public class ARMSQueryDataSetResponseUnmarshaller {
2122

2223
public static ARMSQueryDataSetResponse unmarshall(ARMSQueryDataSetResponse aRMSQueryDataSetResponse, UnmarshallerContext context) {
23-
24+
2425
aRMSQueryDataSetResponse.setData(context.stringValue("ARMSQueryDataSetResponse.Data"));
2526

2627
return aRMSQueryDataSetResponse;

aliyun-java-sdk-arms4finance/src/main/java/com/aliyuncs/arms4finance/transform/v20171130/WhereInDimQueryResponseUnmarshaller.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,17 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.aliyuncs.arms4finance.transform.v20171130;
1514

15+
package com.aliyuncs.arms4finance.transform.v20171130;
16+
1617
import com.aliyuncs.arms4finance.model.v20171130.WhereInDimQueryResponse;
1718
import com.aliyuncs.transform.UnmarshallerContext;
1819

1920

2021
public class WhereInDimQueryResponseUnmarshaller {
2122

2223
public static WhereInDimQueryResponse unmarshall(WhereInDimQueryResponse whereInDimQueryResponse, UnmarshallerContext context) {
23-
24+
2425
whereInDimQueryResponse.setData(context.stringValue("WhereInDimQueryResponse.Data"));
2526

2627
return whereInDimQueryResponse;

0 commit comments

Comments
 (0)