1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.dsh.utils.push.ios;
|
|
| import com.dsh.utils.push.IOSNotification;
|
| public class IOSBroadcast extends IOSNotification {
|
| public IOSBroadcast(String appkey, String appMasterSecret) throws Exception {
| setAppMasterSecret(appMasterSecret);
| setPredefinedKeyValue("appkey", appkey);
| this.setPredefinedKeyValue("type", "broadcast");
|
| }
| }
|
|