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

com.windowsazure.messaging.NotificationPlatform 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 com.google.gson.annotations.SerializedName;

/**
 * This enum represents the types of notification platforms supported.
 */
public enum NotificationPlatform {
    /**
     * The WNS platform.
     */
    @SerializedName("wns")
    Wns,
    /**
     * The APNS platform.
     */
    @SerializedName("apns")
    Apns,
    /**
     * The MPNS platform for Windows Phone.
     */
    @SerializedName("mpns")
    Mpns,
    /**
     * The FCM Legacy Platform, see https://aka.ms/AA9dpaz
     */
    @SerializedName("gcm")
    Gcm,
    /**
     * The FCM platform which is currently NOT supported, see https://aka.ms/AA9dpaz
     */
    @SerializedName("fcm")
    Fcm,
    /**
     * The FCM V1 platform
     */
    @SerializedName("fcmv1")
    FcmV1,
    /**
     * The ADM platform.
     */
    @SerializedName("adm")
    Adm,
    /**
     * The Baidu Push Platform.
     */
    @SerializedName("baidu")
    Baidu,
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy