Rev 24330 | Rev 29285 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service;import org.springframework.stereotype.Service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.auth.AuthUser;@Servicepublic interface AuthService {boolean authenticate(String emailOrMobile, String passowrd);void resetPassword(String emailOrMobile) throws ProfitMandiBusinessException;void addAuthUser(AuthUser authUser) throws ProfitMandiBusinessException;void changePassword(String emailOrMobile, String oldHashedPassword, String hashedPassword)throws ProfitMandiBusinessException;String getNameByEmailId(String email);}