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

com.togocms.pns.api.PushNotificationService Maven / Gradle / Ivy

The newest version!
package com.togocms.pns.api;

import java.util.List;

public interface PushNotificationService {

	public Long sendBroadcastNotification(String apiKey, PushNotification pushNotification) throws Exception;

	public Long sendNotification(String apiKey, PushNotification pushNotification, Long userId) throws Exception;

	public Long sendGroupNotification(String apiKey, PushNotification pushNotification, List userIds) throws Exception;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy