![JAR search and dependency download from the Maven repository](/logo.png)
com.windowsazure.messaging.NotificationPlatform Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Notification-Hubs-java-sdk Show documentation
Show all versions of Notification-Hubs-java-sdk Show documentation
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