Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / maybank / MaybankFacadeImpl.java @ 33:9d5b4aece71c

History | View | Annotate | Download (2.35 KB)

1 30:aec0089bb43e hadi
package my.com.upass.maybank;
2
3
import javax.jws.WebService;
4
5 33:9d5b4aece71c hadi
import my.com.upass.UPassControllerV2;
6 30:aec0089bb43e hadi
7
import org.apache.commons.lang.NotImplementedException;
8
9 32:d43f37e77545 hadi
@WebService(
10
                serviceName = "MaybankFacade",
11
                endpointInterface = "my.com.upass.maybank.MaybankFacade")
12
//
13
public class MaybankFacadeImpl
14
                extends MinimalMaybankFacadeImpl
15
                implements MaybankFacade {
16 30:aec0089bb43e hadi
17 33:9d5b4aece71c hadi
        private final UPassControllerV2 upcV2;
18
19
        public MaybankFacadeImpl() {
20
                upcV2 = new UPassControllerV2();
21
        }
22
23
        @Override
24 30:aec0089bb43e hadi
        public int newAdminUser(String appKey, String username, String hashedPassword) {
25
                throw new NotImplementedException();
26
        }
27
28 33:9d5b4aece71c hadi
        @Override
29 30:aec0089bb43e hadi
        public int changePan(String appKey, String username, String pan1) {
30
                // TODO Auto-generated method stub
31
                throw new NotImplementedException();
32
        }
33
34 33:9d5b4aece71c hadi
        @Override
35 30:aec0089bb43e hadi
        public int changePan2(String appKey, String username, String pan2) {
36
                // TODO Auto-generated method stub
37
                throw new NotImplementedException();
38
        }
39
40 33:9d5b4aece71c hadi
        @Override
41 30:aec0089bb43e hadi
        public int convertPublicToM2u(String appKey, String username, String pan1, String pan2) {
42
                // TODO Auto-generated method stub
43
                throw new NotImplementedException();
44
        }
45
46 33:9d5b4aece71c hadi
        @Override
47
        public ResponseElement lookupUserName(String appKey, String username) {
48 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
49
                throw new NotImplementedException();
50
        }
51
52 33:9d5b4aece71c hadi
        @Override
53
        public ResponseElement lookupPublicUserName(String appKey, String username) {
54 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
55
                throw new NotImplementedException();
56
        }
57
58 33:9d5b4aece71c hadi
        @Override
59
        public ResponseElement lookupUserNameByGroup(String appKey, String username) {
60 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
61
                throw new NotImplementedException();
62
        }
63
64 33:9d5b4aece71c hadi
        @Override
65
        public ResponseElement lookupPan(String appKey, String pan1) {
66 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
67
                throw new NotImplementedException();
68
        }
69
70 33:9d5b4aece71c hadi
        @Override
71
        public ResponseElement lookupPan2(String appKey, String pan2) {
72 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
73
                throw new NotImplementedException();
74
        }
75
76 33:9d5b4aece71c hadi
        @Override
77
        public ResponseElement lookupPanCc(String appKey, String panCC) {
78
                // TODO Auto-generated method stub
79
                throw new NotImplementedException();
80
        }
81
82
        @Override
83 30:aec0089bb43e hadi
        public int deleteUser(String appKey, String username) {
84
                // TODO Auto-generated method stub
85
                throw new NotImplementedException();
86
        }
87
88 33:9d5b4aece71c hadi
        @Override
89
        public ResponseElement searchUserByFilter(String appKey, String searchFilter) {
90 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
91
                throw new NotImplementedException();
92
        }
93
}