File tree Expand file tree Collapse file tree 5 files changed +20
-3
lines changed
src/main/java/com/getui/push/v2/sdk Expand file tree Collapse file tree 5 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 11# Release Notes
22
3+ ## 1.0.0.9
4+ ### update
5+ * 新增自定义回执字段SVIP功能
6+
37## 1.0.0.8
48### update
59* ApiHelper和DefaultApiClient 缓存key支持设置自定义前缀,满足客户特殊使用场景
Original file line number Diff line number Diff line change 2222 <dependency >
2323 <groupId >com.getui.push</groupId >
2424 <artifactId >restful-sdk</artifactId >
25- <version >1.0.0.8 </version >
25+ <version >1.0.0.9 </version >
2626 </dependency >
2727```
2828
Original file line number Diff line number Diff line change 77 <groupId >com.getui.push</groupId >
88 <artifactId >restful-sdk</artifactId >
99 <packaging >jar</packaging >
10- <version >1.0.0.8 </version >
10+ <version >1.0.0.9 </version >
1111 <url >https://github.com/GetuiLaboratory/getui-pushapi-java-client-v2</url >
1212 <name >Getui Push API Java Client</name >
1313 <description >Getui's officially supported Java client library for accessing Getui APIs.</description >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public interface Configs {
1313
1414 String HEADER_DOMAIN_HASH_KEY = "domainHash" ;
1515 String HEADER_OPEN_STABLE_DOMAIN = "openStableDomain" ;
16- String SDK_VERSION = "1.0.0.8 " ;
16+ String SDK_VERSION = "1.0.0.9 " ;
1717 /**
1818 * 预置域名列表
1919 */
Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ public class Settings {
2020 * 定时推送时间,格式:毫秒时间戳
2121 */
2222 private Long scheduleTime ;
23+ /**
24+ * 自定义回执字段,SVIP功能
25+ */
26+ private String customCallback ;
2327
2428 public Integer getTtl () {
2529 return ttl ;
@@ -53,13 +57,22 @@ public void setScheduleTime(Long scheduleTime) {
5357 this .scheduleTime = scheduleTime ;
5458 }
5559
60+ public String getCustomCallback () {
61+ return customCallback ;
62+ }
63+
64+ public void setCustomCallback (String customCallback ) {
65+ this .customCallback = customCallback ;
66+ }
67+
5668 @ Override
5769 public String toString () {
5870 return "Settings{" +
5971 "ttl=" + ttl +
6072 ", strategy=" + strategy +
6173 ", speed=" + speed +
6274 ", scheduleTime=" + scheduleTime +
75+ ", customCallback=" + customCallback +
6376 '}' ;
6477 }
6578}
You can’t perform that action at this time.
0 commit comments