Subversion Repositories SmartDukaan

Rev

Rev 30066 | Rev 30989 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25822 amit.gupta 1
package com.spice.profitmandi.service;
2
 
30066 amit.gupta 3
import com.spice.profitmandi.common.enumuration.MessageType;
29198 manish 4
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
25822 amit.gupta 5
import com.spice.profitmandi.common.model.SendNotificationModel;
29927 amit.gupta 6
import org.springframework.stereotype.Service;
25822 amit.gupta 7
 
8
@Service
9
public interface NotificationService {
29198 manish 10
	void sendNotification(SendNotificationModel sendNotificationModel) throws ProfitMandiBusinessException;
29927 amit.gupta 11
 
12
	void sendNotificationToAll(SendNotificationModel sendNotificationModel) throws ProfitMandiBusinessException;
30025 amit.gupta 13
 
30859 tejbeer 14
	void sendNotification(int fofoId, String campaignName, MessageType messageType, String title, String message)
15
			throws ProfitMandiBusinessException;
16
 
17
	void sendNotification(int fofoId, String campaignName, MessageType messageType, String title, String message,
18
			String Url) throws ProfitMandiBusinessException;
25822 amit.gupta 19
}