Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / maybank / MaybankFacadeImpl.java @ 36:d0e2afc0c6e6

History | View | Annotate | Download (2.82 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 34:420c5039e742 hadi
        public int newAdminUser(
25
                        String appAccessId, String hashedSecretKey,
26
                        String username, String hashedPassword) {
27
28 30:aec0089bb43e hadi
                throw new NotImplementedException();
29
        }
30
31 33:9d5b4aece71c hadi
        @Override
32 34:420c5039e742 hadi
        public int changePan(
33
                        String appAccessId, String hashedSecretKey,
34
                        String username, String pan1) {
35
36 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
37
                throw new NotImplementedException();
38
        }
39
40 33:9d5b4aece71c hadi
        @Override
41 34:420c5039e742 hadi
        public int changePan2(
42
                        String appAccessId, String hashedSecretKey,
43
                        String username, String pan2) {
44
45 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
46
                throw new NotImplementedException();
47
        }
48
49 33:9d5b4aece71c hadi
        @Override
50 34:420c5039e742 hadi
        public int convertPublicToM2u(
51
                        String appAccessId, String hashedSecretKey,
52
                        String username, String pan1, String pan2) {
53
54 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
55
                throw new NotImplementedException();
56
        }
57
58 33:9d5b4aece71c hadi
        @Override
59 34:420c5039e742 hadi
        public ResponseElement lookupUserName(
60
                        String appAccessId, String hashedSecretKey,
61
                        String username) {
62
63 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
64
                throw new NotImplementedException();
65
        }
66
67 33:9d5b4aece71c hadi
        @Override
68 34:420c5039e742 hadi
        public ResponseElement lookupPublicUserName(
69
                        String appAccessId, String hashedSecretKey,
70
                        String username) {
71
72 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
73
                throw new NotImplementedException();
74
        }
75
76 33:9d5b4aece71c hadi
        @Override
77 34:420c5039e742 hadi
        public ResponseElement lookupUserNameByGroup(
78
                        String appAccessId, String hashedSecretKey,
79
                        String username) {
80
81 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
82
                throw new NotImplementedException();
83
        }
84
85 33:9d5b4aece71c hadi
        @Override
86 34:420c5039e742 hadi
        public ResponseElement lookupPan(
87
                        String appAccessId, String hashedSecretKey,
88
                        String pan1) {
89
90 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
91
                throw new NotImplementedException();
92
        }
93
94 33:9d5b4aece71c hadi
        @Override
95 34:420c5039e742 hadi
        public ResponseElement lookupPan2(
96
                        String appAccessId, String hashedSecretKey,
97
                        String pan2) {
98
99 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
100
                throw new NotImplementedException();
101
        }
102
103 33:9d5b4aece71c hadi
        @Override
104 34:420c5039e742 hadi
        public ResponseElement lookupPanCc(
105
                        String appAccessId, String hashedSecretKey,
106
                        String panCC) {
107
108 33:9d5b4aece71c hadi
                // TODO Auto-generated method stub
109
                throw new NotImplementedException();
110
        }
111
112
        @Override
113 34:420c5039e742 hadi
        public int deleteUser(
114
                        String appAccessId, String hashedSecretKey,
115
                        String username) {
116
117 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
118
                throw new NotImplementedException();
119
        }
120
121 33:9d5b4aece71c hadi
        @Override
122 34:420c5039e742 hadi
        public ResponseElement searchUserByFilter(
123
                        String appAccessId, String hashedSecretKey,
124
                        String searchFilter) {
125
126 30:aec0089bb43e hadi
                // TODO Auto-generated method stub
127
                throw new NotImplementedException();
128
        }
129
}