Subversion Repositories SmartDukaan

Rev

Rev 21734 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21734 Rev 21735
Line 10... Line 10...
10
import org.springframework.beans.factory.annotation.Autowired;
10
import org.springframework.beans.factory.annotation.Autowired;
11
import org.springframework.stereotype.Component;
11
import org.springframework.stereotype.Component;
12
 
12
 
13
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
13
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
14
import com.spice.profitmandi.common.util.Utils;
14
import com.spice.profitmandi.common.util.Utils;
15
import com.spice.profitmandi.dao.entity.Otp;
15
import com.spice.profitmandi.dao.entity.dtr.Otp;
16
import com.spice.profitmandi.dao.enumuration.OtpType;
16
import com.spice.profitmandi.dao.enumuration.dtr.OtpType;
17
import com.spice.profitmandi.dao.repository.OtpRepository;
17
import com.spice.profitmandi.dao.repository.dtr.OtpRepository;
18
import com.spice.profitmandi.web.res.OTPResponse;
18
import com.spice.profitmandi.web.res.OTPResponse;
19
 
19
 
20
@Component
20
@Component
21
public class OtpProcessor{
21
public class OtpProcessor{
22
 
22