Subversion Repositories SmartDukaan

Rev

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

Rev 26840 Rev 26842
Line 71... Line 71...
71
		// TODO Auto-generated method stub
71
		// TODO Auto-generated method stub
72
		
72
		
73
	}
73
	}
74
 
74
 
75
	@Override
75
	@Override
76
	public void changePassword(String emailOrMobile, String oldHashedPassword, String hashedPassword)
76
	public void changePassword(String mobileNumber, String newPassword)
77
			throws ProfitMandiBusinessException {
77
			throws ProfitMandiBusinessException {
-
 
78
		Customer customer = customerRepository.selectByMobileNumber(mobileNumber);
78
		// TODO Auto-generated method stub
79
		customer.setPassword(getHash256(newPassword));
79
		
-
 
80
	}
80
	}
81
 
81
 
82
}
82
}