Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (2.35 KB)

1
package my.com.upass.maybank;
2

    
3
import javax.jws.WebService;
4

    
5
import my.com.upass.UPassControllerV2;
6

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

    
9
@WebService(
10
                serviceName = "MaybankFacade",
11
                endpointInterface = "my.com.upass.maybank.MaybankFacade")
12
//
13
public class MaybankFacadeImpl
14
                extends MinimalMaybankFacadeImpl
15
                implements MaybankFacade {
16

    
17
        private final UPassControllerV2 upcV2;
18

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

    
23
        @Override
24
        public int newAdminUser(String appKey, String username, String hashedPassword) {
25
                throw new NotImplementedException();
26
        }
27

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

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

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

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

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

    
58
        @Override
59
        public ResponseElement lookupUserNameByGroup(String appKey, String username) {
60
                // TODO Auto-generated method stub
61
                throw new NotImplementedException();
62
        }
63

    
64
        @Override
65
        public ResponseElement lookupPan(String appKey, String pan1) {
66
                // TODO Auto-generated method stub
67
                throw new NotImplementedException();
68
        }
69

    
70
        @Override
71
        public ResponseElement lookupPan2(String appKey, String pan2) {
72
                // TODO Auto-generated method stub
73
                throw new NotImplementedException();
74
        }
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
83
        public int deleteUser(String appKey, String username) {
84
                // TODO Auto-generated method stub
85
                throw new NotImplementedException();
86
        }
87

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