SMS Plugin#
Plugin Descriptor interface:
SmsPluginDescriptor
A SMS Plugin provides an implementation of SmsSender that can be used by the Curity Identity Server to send SMS notifications.
Implementing SmsSender#
The SmsSender interface has a single method to be implemented:
boolean sendSms(String toNumber, String msg);
It should return true on success, false otherwise.