![JAR search and dependency download from the Maven repository](/logo.png)
com.windowsazure.messaging.AppleInstallation 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;
/**
* This class represents an Apple installation.
*/
public class AppleInstallation extends Installation {
/**
* Creates a new instance of the AppleInstallation class.
*
* @param installationId The ID for the installation.
*/
public AppleInstallation(String installationId) {
super(installationId, NotificationPlatform.Apns, null, (String[])null);
}
/**
* Creates a new instance of the AppleInstallation class.
*
* @param installationId The ID for the installation.
* @param tags The tags for the installation.
*/
public AppleInstallation(String installationId, String... tags) {
super(installationId, NotificationPlatform.Apns, null, tags);
}
/**
* Creates a new instance of the AppleInstallation class.
*
* @param installationId The ID for the installation.
* @param pushChannel The push channel for the installation.
*/
public AppleInstallation(String installationId, String pushChannel) {
super(installationId, NotificationPlatform.Apns, pushChannel, (String[]) null);
}
/**
* Creates a new instance of the AppleInstallation class.
* @param installationId The ID for the installation.
* @param pushChannel The device specific push channel for the installation.
* @param tags The tags for the installation.
*/
public AppleInstallation(String installationId, String pushChannel, String... tags) {
super(installationId, NotificationPlatform.Apns, pushChannel, tags);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy