| 12345678910111213 |
- package com.izouma.nineth.push.ios;
- import com.izouma.nineth.push.IOSNotification;
- public class IOSBroadcast extends IOSNotification {
- public IOSBroadcast(String appkey,String appMasterSecret) throws Exception {
- setAppMasterSecret(appMasterSecret);
- setPredefinedKeyValue("appkey", appkey);
- this.setPredefinedKeyValue("type", "broadcast");
-
- }
- }
|