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

com.windowsazure.messaging.NotificationOutcome Maven / Gradle / Ivy

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