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

pushlibrary.notifications.NotificationFactory Maven / Gradle / Ivy

There is a newer version: 0.8
Show newest version
package pushlibrary.notifications;

import java.util.HashMap;

public class NotificationFactory {
	public static final HashMap notificationsByType = new HashMap() {
		{
			put("simple", new SimpleNotification());
			put("expandablepicture", new ExpandablePictureNotification());
		}
	};

	public static EasypushNotification getNotification(String type) {
		return notificationsByType.get(type);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy