Class NotificationManager
- java.lang.Object
-
- io.mosip.authentication.common.service.integration.NotificationManager
-
@Component public class NotificationManager extends Object
The Class NotificationManager.- Author:
- Dinesh Karuppiah.T
-
-
Constructor Summary
Constructors Constructor Description NotificationManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsendEmailNotification(String emailId, String mailSubject, String mailContent)Send email notification.voidsendSmsNotification(String notificationMobileNo, String message)Send sms notification.
-
-
-
Method Detail
-
sendSmsNotification
public void sendSmsNotification(String notificationMobileNo, String message) throws IdAuthenticationBusinessException
Send sms notification.- Parameters:
notificationMobileNo- the notification mobile nomessage- the message- Throws:
IdAuthenticationBusinessException- the id authentication business exception
-
sendEmailNotification
public void sendEmailNotification(String emailId, String mailSubject, String mailContent) throws IdAuthenticationBusinessException
Send email notification.- Parameters:
emailId- the email idmailSubject- the mail subjectmailContent- the mail content- Throws:
IdAuthenticationBusinessException- the id authentication business exception
-
-