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

com.windowsazure.messaging.BaiduNotification Maven / Gradle / Ivy

Go to download

Azure Notification Hubs Java SDK for interacting with the data and management plane operations.

The newest version!
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------

package com.windowsazure.messaging;

import org.apache.hc.core5.http.ContentType;

/**
 * This class represents a notification for the Baidu PNS.
 */
public class BaiduNotification extends Notification {

    /**
     * Creates a new instance of the BaiduNotification class.
     * @param body The JSON body for the Baidu notification.
     */
    public BaiduNotification(String body) {
        this.body = body;
        this.contentType = ContentType.APPLICATION_JSON;

        this.headers.put("ServiceBusNotification-Format", "baidu");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy