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