File tree Expand file tree Collapse file tree 4 files changed +4
-27
lines changed
src/main/java/com/aliyuncs/onsmqtt/model/v20191211 Expand file tree Collapse file tree 4 files changed +4
-27
lines changed Original file line number Diff line number Diff line change
1
+ 2020-03-05 Version: 1.0.1
2
+ - Update send message noPresistFlag param.
3
+
1
4
2020-02-13 Version: 1.0.0
2
5
- Init MQTT SDK .
3
6
Original file line number Diff line number Diff line change 4
4
<groupId >com.aliyun</groupId >
5
5
<artifactId >aliyun-java-sdk-onsmqtt</artifactId >
6
6
<packaging >jar</packaging >
7
- <version >1.0.0 </version >
7
+ <version >1.0.1 </version >
8
8
<name >aliyun-java-sdk-onsmqtt</name >
9
9
<url >http://www.aliyun.com</url >
10
10
<description >Aliyun Open API SDK for Java
Original file line number Diff line number Diff line change 25
25
public class BatchSendMessagesRequest extends RpcAcsRequest <BatchSendMessagesResponse > {
26
26
27
27
28
- private Boolean noPersistFlag ;
29
-
30
28
private String instanceId ;
31
29
32
30
private List <Messages > messagess ;
@@ -35,17 +33,6 @@ public BatchSendMessagesRequest() {
35
33
setMethod (MethodType .POST );
36
34
}
37
35
38
- public Boolean getNoPersistFlag () {
39
- return this .noPersistFlag ;
40
- }
41
-
42
- public void setNoPersistFlag (Boolean noPersistFlag ) {
43
- this .noPersistFlag = noPersistFlag ;
44
- if (noPersistFlag != null ){
45
- putQueryParameter ("NoPersistFlag" , noPersistFlag .toString ());
46
- }
47
- }
48
-
49
36
public String getInstanceId () {
50
37
return this .instanceId ;
51
38
}
Original file line number Diff line number Diff line change 24
24
public class SendMessageRequest extends RpcAcsRequest <SendMessageResponse > {
25
25
26
26
27
- private Boolean noPersistFlag ;
28
-
29
27
private String mqttTopic ;
30
28
31
29
private String instanceId ;
@@ -38,17 +36,6 @@ public SendMessageRequest() {
38
36
setMethod (MethodType .POST );
39
37
}
40
38
41
- public Boolean getNoPersistFlag () {
42
- return this .noPersistFlag ;
43
- }
44
-
45
- public void setNoPersistFlag (Boolean noPersistFlag ) {
46
- this .noPersistFlag = noPersistFlag ;
47
- if (noPersistFlag != null ){
48
- putQueryParameter ("NoPersistFlag" , noPersistFlag .toString ());
49
- }
50
- }
51
-
52
39
public String getMqttTopic () {
53
40
return this .mqttTopic ;
54
41
}
You can’t perform that action at this time.
0 commit comments