@@ -950,12 +950,13 @@ public DefaultResult bindMobile(String registrationId, String mobile)
950
950
}
951
951
952
952
// ----------------------- Schedule
953
-
954
953
/**
955
954
* Create a single schedule.
956
955
* @param name The schedule name.
957
956
* @param time The push time, format is 'yyyy-MM-dd HH:mm:ss'
958
957
* @param push The push payload.
958
+ * @param masterSecret master secret
959
+ * @param appKey app key
959
960
* @return The created scheduleResult instance.
960
961
* @throws APIConnectionException if a remote or network exception occurs.
961
962
* @throws APIRequestException if a request exception occurs.
@@ -983,6 +984,8 @@ public ScheduleResult createSingleSchedule(String name, String time, PushPayload
983
984
* @param end The schedule expiration date, format 'yyyy-MM-dd HH:mm:ss'.
984
985
* @param time The push time, format 'HH:mm:ss'
985
986
* @param push The push payload.
987
+ * @param masterSecret master secret
988
+ * @param appKey app key
986
989
* @return The created scheduleResult instance.
987
990
* @throws APIConnectionException if a remote or network exception occurs.
988
991
* @throws APIRequestException if a request exception occurs.
@@ -1002,6 +1005,8 @@ public ScheduleResult createDailySchedule(String name, String start, String end,
1002
1005
* @param time The push time, format 'HH:mm:ss'
1003
1006
* @param frequency The custom frequency.
1004
1007
* @param push The push payload.
1008
+ * @param masterSecret master secret
1009
+ * @param appKey app key
1005
1010
* @return The created scheduleResult instance.
1006
1011
* @throws APIConnectionException if a remote or network exception occurs.
1007
1012
* @throws APIRequestException if a request exception occurs.
@@ -1021,6 +1026,8 @@ public ScheduleResult createDailySchedule(String name, String start, String end,
1021
1026
* @param time The push time, format 'HH:mm:ss'
1022
1027
* @param days The appointed days.
1023
1028
* @param push The push payload.
1029
+ * @param masterSecret master secret
1030
+ * @param appKey app key
1024
1031
* @return The created scheduleResult instance.
1025
1032
* @throws APIConnectionException if a remote or network exception occurs.
1026
1033
* @throws APIRequestException if a request exception occurs.
@@ -1047,6 +1054,8 @@ public ScheduleResult createWeeklySchedule(String name, String start, String end
1047
1054
* @param frequency The custom frequency.
1048
1055
* @param days The appointed days.
1049
1056
* @param push The push payload.
1057
+ * @param masterSecret master secret
1058
+ * @param appKey app key
1050
1059
* @return The created scheduleResult instance.
1051
1060
* @throws APIConnectionException if a remote or network exception occurs.
1052
1061
* @throws APIRequestException if a request exception occurs.
@@ -1071,6 +1080,8 @@ public ScheduleResult createWeeklySchedule(String name, String start, String end
1071
1080
* @param time The push time, format 'HH:mm:ss'.
1072
1081
* @param points The appointed days.
1073
1082
* @param push The push payload.
1083
+ * @param masterSecret master secret
1084
+ * @param appKey app key
1074
1085
* @return The created scheduleResult instance.
1075
1086
* @throws APIConnectionException if a remote or network exception occurs.
1076
1087
* @throws APIRequestException if a request exception occurs.
@@ -1091,6 +1102,8 @@ public ScheduleResult createMonthlySchedule(String name, String start, String en
1091
1102
* @param frequency The custom frequency.
1092
1103
* @param points The appointed days.
1093
1104
* @param push The push payload.
1105
+ * @param masterSecret master secret
1106
+ * @param appKey app key
1094
1107
* @return The created scheduleResult instance.
1095
1108
* @throws APIConnectionException if a remote or network exception occurs.
1096
1109
* @throws APIRequestException if a request exception occurs.
0 commit comments