| 12345678910111213141516171819202122 |
- package com.izouma.nineth.push.ios;
- import com.izouma.nineth.push.IOSNotification;
- public class IOSCustomizedcast extends IOSNotification {
- public IOSCustomizedcast(String appkey,String appMasterSecret) throws Exception {
- setAppMasterSecret(appMasterSecret);
- setPredefinedKeyValue("appkey", appkey);
- this.setPredefinedKeyValue("type", "customizedcast");
- }
-
- public void setAlias(String alias,String aliasType) throws Exception {
- setPredefinedKeyValue("alias", alias);
- setPredefinedKeyValue("alias_type", aliasType);
- }
-
- public void setFileId(String fileId, String aliasType) throws Exception {
- setPredefinedKeyValue("file_id", fileId);
- setPredefinedKeyValue("alias_type", aliasType);
- }
- }
|