IOSCustomizedcast.java 716 B

1234567891011121314151617181920212223
  1. package com.fdkankan.push.ios;
  2. import com.fdkankan.push.IOSNotification;
  3. public class IOSCustomizedcast extends IOSNotification {
  4. public IOSCustomizedcast(String appkey,String appMasterSecret) throws Exception {
  5. setAppMasterSecret(appMasterSecret);
  6. setPredefinedKeyValue("appkey", appkey);
  7. this.setPredefinedKeyValue("type", "customizedcast");
  8. }
  9. public void setAlias(String alias,String aliasType) throws Exception {
  10. setPredefinedKeyValue("alias", alias);
  11. setPredefinedKeyValue("alias_type", aliasType);
  12. }
  13. public void setFileId(String fileId, String aliasType) throws Exception {
  14. setPredefinedKeyValue("file_id", fileId);
  15. setPredefinedKeyValue("alias_type", aliasType);
  16. }
  17. }