
com.togocms.pns.api.PushNotificationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of togopns Show documentation
Show all versions of togopns Show documentation
Push Notification System (Apple/Google)
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