AndroidUnicast.java 500 B

12345678910111213141516
  1. package com.fdkankan.modeling.push.android;
  2. import com.fdkankan.modeling.push.AndroidNotification;
  3. public class AndroidUnicast extends AndroidNotification {
  4. public AndroidUnicast(String appkey,String appMasterSecret) throws Exception {
  5. setAppMasterSecret(appMasterSecret);
  6. setPredefinedKeyValue("appkey", appkey);
  7. this.setPredefinedKeyValue("type", "unicast");
  8. }
  9. public void setDeviceToken(String token) throws Exception {
  10. setPredefinedKeyValue("device_tokens", token);
  11. }
  12. }