private static JsonObject buildNotificationMessage()

in messaging/src/main/java/com/google/firebase/quickstart/Messaging.java [194:207]


  private static JsonObject buildNotificationMessage() {
    JsonObject jNotification = new JsonObject();
    jNotification.addProperty("title", TITLE);
    jNotification.addProperty("body", BODY);

    JsonObject jMessage = new JsonObject();
    jMessage.add("notification", jNotification);
    jMessage.addProperty("topic", "news");

    JsonObject jFcm = new JsonObject();
    jFcm.add(MESSAGE_KEY, jMessage);

    return jFcm;
  }