Back to project page notify-me-android.
The source code is released under:
MIT License
If you think the Android project notify-me-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.contexthub.notifyme.model; /*from w w w . j a v a 2 s . c o m*/ /** * A simple class to demonstrate sending custom data to a device via a background push notification */ public class CustomData { String message; String customPayload; public CustomData(String message, String customPayload) { this.message = message; this.customPayload = customPayload; } }