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

com.healthy.common.security.code.sms.SmsCodeSender Maven / Gradle / Ivy

There is a newer version: 1.2.1.RELEASE
Show newest version
package com.healthy.common.security.code.sms;

import java.util.Map;

/**
 * SmsCodeSender
 *
 * @author xiaomingzhang
 */
public interface SmsCodeSender {

    /**
     * Send SMS code
     *
     * @param mobile Recipient's mobile phone number
     * @param code   Verification code
     * @param extra  Extra parameters
     */
    void send(String mobile, String code, Map extra);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy