blob: 67925ec1447ef23979dcba142141c00c03afb6a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package com.juick.service;
/**
* Created by vitalyster on 09.12.2016.
*/
public interface EmailService {
boolean verifyAddressByCode(Integer userId, String code);
boolean addVerificationCode(Integer userId, String account, String code);
boolean deleteEmail(Integer userId, String account);
boolean setSubscriptionHour(Integer userId, String account, String hour);
}
|