All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.taimos.dvalin.notification.push.GCMNotificationMessage Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package de.taimos.dvalin.notification.push;

import java.util.HashMap;
import java.util.Map;

public class GCMNotificationMessage extends PushMessage {
    
    private final String message;
    private String title;
    private String icon;
    
    private Map customData = new HashMap<>();
    
    public GCMNotificationMessage(String message) {
        this.message = message;
        this.customData.put("message", message);
    }
    
    public void setTitle(String title) {
        this.title = title;
    }
    
    public void setIcon(String icon) {
        this.icon = icon;
    }
    
    public void addCustomData(String key, String value) {
        this.customData.put(key, value);
    }
    
    @Override
    protected Map getPayload() {
        Map notification = new HashMap<>();
        notification.put("body", this.message);
        notification.put("title", this.title);
        notification.put("icon", this.icon);
        
        Map map = new HashMap<>();
        map.put("notification", notification);
        map.put("data", this.customData);
        return map;
    }
    
    @Override
    public Platform getType() {
        return Platform.GCM;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy