Revision 33:9d5b4aece71c src/my/com/upass/maybank/MaybankFacadeImpl.java

View differences:

src/my/com/upass/maybank/MaybankFacadeImpl.java
2 2

  
3 3
import javax.jws.WebService;
4 4

  
5
import my.com.upass.maybank.MinimalMaybankFacadeImpl;
5
import my.com.upass.UPassControllerV2;
6 6

  
7 7
import org.apache.commons.lang.NotImplementedException;
8 8

  
......
14 14
		extends MinimalMaybankFacadeImpl
15 15
		implements MaybankFacade {
16 16

  
17
	private final UPassControllerV2 upcV2;
18

  
19
	public MaybankFacadeImpl() {
20
		upcV2 = new UPassControllerV2();
21
	}
22

  
23
	@Override
17 24
	public int newAdminUser(String appKey, String username, String hashedPassword) {
18
		// TODO Auto-generated method stub
19 25
		throw new NotImplementedException();
20 26
	}
21 27

  
28
	@Override
22 29
	public int changePan(String appKey, String username, String pan1) {
23 30
		// TODO Auto-generated method stub
24 31
		throw new NotImplementedException();
25 32
	}
26 33

  
34
	@Override
27 35
	public int changePan2(String appKey, String username, String pan2) {
28 36
		// TODO Auto-generated method stub
29 37
		throw new NotImplementedException();
30 38
	}
31 39

  
40
	@Override
32 41
	public int convertPublicToM2u(String appKey, String username, String pan1, String pan2) {
33 42
		// TODO Auto-generated method stub
34 43
		throw new NotImplementedException();
35 44
	}
36 45

  
37
	public Object lookupUserName(String appKey, String username) {
46
	@Override
47
	public ResponseElement lookupUserName(String appKey, String username) {
38 48
		// TODO Auto-generated method stub
39 49
		throw new NotImplementedException();
40 50
	}
41 51

  
42
	public Object lookupUserNameByGroup(String appKey, String username) {
52
	@Override
53
	public ResponseElement lookupPublicUserName(String appKey, String username) {
43 54
		// TODO Auto-generated method stub
44 55
		throw new NotImplementedException();
45 56
	}
46 57

  
47
	public Object lookupPan(String appKey, String pan1) {
58
	@Override
59
	public ResponseElement lookupUserNameByGroup(String appKey, String username) {
48 60
		// TODO Auto-generated method stub
49 61
		throw new NotImplementedException();
50 62
	}
51 63

  
52
	public Object lookupPan2(String appKey, String pan2) {
64
	@Override
65
	public ResponseElement lookupPan(String appKey, String pan1) {
53 66
		// TODO Auto-generated method stub
54 67
		throw new NotImplementedException();
55 68
	}
56 69

  
57
	public Object lookupPanCc(String appKey, String panCC) {
70
	@Override
71
	public ResponseElement lookupPan2(String appKey, String pan2) {
58 72
		// TODO Auto-generated method stub
59 73
		throw new NotImplementedException();
60 74
	}
61 75

  
76
	@Override
77
	public ResponseElement lookupPanCc(String appKey, String panCC) {
78
		// TODO Auto-generated method stub
79
		throw new NotImplementedException();
80
	}
81

  
82
	@Override
62 83
	public int deleteUser(String appKey, String username) {
63 84
		// TODO Auto-generated method stub
64 85
		throw new NotImplementedException();
65 86
	}
66 87

  
67
	public Object searchUserByFilter(String appKey, String searchFilter) {
88
	@Override
89
	public ResponseElement searchUserByFilter(String appKey, String searchFilter) {
68 90
		// TODO Auto-generated method stub
69 91
		throw new NotImplementedException();
70 92
	}

Also available in: Unified diff