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

com.thebund1st.daming.sms.SmsVerificationCodeSenderStub Maven / Gradle / Ivy

package com.thebund1st.daming.sms;

import com.thebund1st.daming.core.SmsVerification;
import com.thebund1st.daming.core.SmsVerificationCodeSender;
import lombok.extern.slf4j.Slf4j;

/**
 * This implementation is for testing only.
 */
@Slf4j
public class SmsVerificationCodeSenderStub implements SmsVerificationCodeSender {
    @Override
    public void send(SmsVerification verification) {
        log.info("Sending [{}] code {} to [{}], the code is expiring in {}",
                verification.getScope(), verification.getCode(), verification.getMobile(), verification.getExpires());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy