Subversion Repositories SmartDukaan

Rev

Rev 33247 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33247 Rev 34785
Line 9... Line 9...
9
 
9
 
10
 
10
 
11
@Service
11
@Service
12
public interface UserService {
12
public interface UserService {
13
	boolean updateActivation(int userId, int retailerId, String activationCode) throws Throwable;
13
	boolean updateActivation(int userId, int retailerId, String activationCode) throws Throwable;
-
 
14
 
14
	boolean createActivationCode(int userId) throws Throwable;
15
	boolean createActivationCode(int userId) throws Throwable;
-
 
16
 
15
	public Map<String, String> getEmailsAndFofoStoreCodeByUserId(int userId) throws ProfitMandiBusinessException;
17
	public Map<String, String> getEmailsAndFofoStoreCodeByUserId(int userId) throws ProfitMandiBusinessException;
16
 
18
 
17
    public Map<Integer, String> getAllUseUserIdEmailIdMap(List<Integer> userIds) throws ProfitMandiBusinessException;
19
    public Map<Integer, String> getAllUseUserIdEmailIdMap(List<Integer> userIds) throws ProfitMandiBusinessException;
-
 
20
 
18
	User authenticate(String emailOrMobile, String password) throws ProfitMandiBusinessException;
21
	User authenticate(String emailOrMobile, String password) throws ProfitMandiBusinessException;
-
 
22
 
-
 
23
	public void resetPassword(String emailOrMobile) throws ProfitMandiBusinessException;
-
 
24
 
19
	boolean resetPassword(String emailOrMobile, String password) throws ProfitMandiBusinessException;
25
	boolean resetPassword(String emailOrMobile, String password) throws ProfitMandiBusinessException;
20
}
26
}