Rev 23984 | Rev 33247 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.user;import java.util.List;import java.util.Map;import org.springframework.stereotype.Service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.dtr.User;@Servicepublic interface UserService {boolean updateActivation(int userId, int retailerId, String activationCode) throws Throwable;boolean createActivationCode(int userId) throws Throwable;public Map<String, String> getEmailsAndFofoStoreCodeByUserId(int userId) throws ProfitMandiBusinessException;public Map<Integer,String> getAllUseUserIdEmailIdMap(List<Integer> userIds);User authenticate(String emailOrMobile, String password) throws ProfitMandiBusinessException;boolean resetPassword(String emailOrMobile, String password) throws ProfitMandiBusinessException;}