Subversion Repositories SmartDukaan

Rev

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

Rev 23781 Rev 23984
Line 1... Line 1...
1
package com.spice.profitmandi.service.user;
1
package com.spice.profitmandi.service.user;
2
 
2
 
-
 
3
import java.util.List;
3
import java.util.Map;
4
import java.util.Map;
4
 
5
 
5
import org.springframework.stereotype.Service;
6
import org.springframework.stereotype.Service;
6
 
7
 
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
Line 9... Line 10...
9
@Service
10
@Service
10
public interface UserService {
11
public interface UserService {
11
	boolean updateActivation(int userId, int retailerId, String activationCode) throws Throwable;
12
	boolean updateActivation(int userId, int retailerId, String activationCode) throws Throwable;
12
	boolean createActivationCode(int userId) throws Throwable;
13
	boolean createActivationCode(int userId) throws Throwable;
13
	public Map<String, String> getEmailsAndFofoStoreCodeByUserId(int userId) throws ProfitMandiBusinessException;
14
	public Map<String, String> getEmailsAndFofoStoreCodeByUserId(int userId) throws ProfitMandiBusinessException;
-
 
15
	public Map<Integer,String> getAllUseUserIdEmailIdMap(List<Integer> userIds);
14
}
16
}