Subversion Repositories SmartDukaan

Rev

Rev 26842 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26842 Rev 34190
Line 7... Line 7...
7
 
7
 
8
@Service
8
@Service
9
public interface CustomerService {
9
public interface CustomerService {
10
	boolean authenticate(String mobile, String passowrd);
10
	boolean authenticate(String mobile, String passowrd);
11
 
11
 
12
	void resetPassword(String mobile) throws ProfitMandiBusinessException;
12
	void resetPassword(String mobileNumber, String newPassword) throws ProfitMandiBusinessException;
13
 
13
 
14
	Customer addCustomer(Customer customer);
14
	Customer addCustomer(Customer customer);
15
 
15
 
16
	void changePassword(String emailOrMobile, String password)
16
	boolean changePassword(String mobileNumber, String oldPassword, String newPassword)
17
			throws ProfitMandiBusinessException;
17
			throws ProfitMandiBusinessException;
18
 
18
 
19
}
19
}