com.windowsazure.messaging.NotificationOutcome Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of NotificationHubs Show documentation
Show all versions of NotificationHubs Show documentation
This package contains the JAVA SDK for Azure Notification Hubs.
The newest version!
package com.windowsazure.messaging;
public class NotificationOutcome {
private String trackingId;
private String notificationId;
public NotificationOutcome(String trackingId, String notificationId){
this.trackingId = trackingId;
this.notificationId = notificationId;
}
public String getTrackingId(){
return this.trackingId;
}
public String getNotificationId(){
return this.notificationId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy