Revision 82:c007b30ed8bf

View differences:

src/main/java/my/com/upass/MinimalUPassControllerV2.java
19 19
import my.com.upass.maybank.entities.TicketingUser;
20 20
import my.com.upass.maybank.entities.UserProfile;
21 21
import my.com.upass.pojo.AuthenticationBean;
22
import my.com.upass.pojo.AuthenticationBean.CredentialSelector;
22 23
import my.com.upass.pojo.ClientApp;
23 24
import my.com.upass.pojo.ConfigurationBean;
24 25
import my.com.upass.pojo.MinimalUserBean;
25 26
import my.com.upass.pojo.UserAppAccess;
26
import my.com.upass.pojo.AuthenticationBean.CredentialSelector;
27 27
import my.com.upass.services.AppAccessMgtService;
28 28
import my.com.upass.services.AppAccessMgtService.MultipleAppAccessesFound;
29 29
import my.com.upass.services.ChangeStaticPasswordService;
......
34 34
import my.com.upass.spring.ldap.MaybankLdapConstant;
35 35
import my.com.upass.spring.ldap.MaybankLdapDAO;
36 36

  
37
import org.apache.commons.lang.NotImplementedException;
38 37
import org.apache.log4j.Logger;
39 38
import org.hibernate.Session;
40 39
import org.springframework.beans.factory.BeanFactory;
src/main/java/my/com/upass/maybank/MinimalMaybankFacade.java
30 30
	Response lookupUsername_internal(
31 31
			String appAccessId, String hashedSecretKey, String username);
32 32

  
33
	Response lookupUsername_internal(
33
	Response lookupUsernameForApp_internal(
34 34
			String appAccessId, String hashedSecretKey,
35 35
			String username, Integer appId);
36 36

  
src/main/java/my/com/upass/maybank/MinimalMaybankFacadeImpl.java
90 90
	public Response lookupUsername_internal(
91 91
			String appAccessId, String hashedSecretKey, String username) {
92 92

  
93
		return lookupUsername_internal(appAccessId, hashedSecretKey, username, null);
93
		return lookupUsernameForApp_internal(appAccessId, hashedSecretKey, username, null);
94 94
	}
95 95

  
96
	public Response lookupUsername_internal(
96
	public Response lookupUsernameForApp_internal(
97 97
			String appAccessId, String hashedSecretKey,
98 98
			String username, Integer appId) {
99 99

  

Also available in: Unified diff