Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / maybank / MaybankFacadeImpl.java @ 30:aec0089bb43e

History | View | Annotate | Download (1.92 KB)

1
package my.com.upass.maybank;
2

    
3
import javax.jws.WebService;
4

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

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

    
9
@WebService(endpointInterface = "my.com.upass.maybank.MaybankFacade")
10
public class MaybankFacadeImpl extends MinimalMaybankFacadeImpl implements MaybankFacade {
11

    
12
        public int newAdminUser(String appKey, String username, String hashedPassword) {
13
                // TODO Auto-generated method stub
14
                throw new NotImplementedException();
15
        }
16

    
17
        public int changePan(String appKey, String username, String pan1) {
18
                // TODO Auto-generated method stub
19
                throw new NotImplementedException();
20
        }
21

    
22
        public int changePan2(String appKey, String username, String pan2) {
23
                // TODO Auto-generated method stub
24
                throw new NotImplementedException();
25
        }
26

    
27
        public int convertPublicToM2u(String appKey, String username, String pan1, String pan2) {
28
                // TODO Auto-generated method stub
29
                throw new NotImplementedException();
30
        }
31

    
32
        public Object lookupUserName(String appKey, String username) {
33
                // TODO Auto-generated method stub
34
                throw new NotImplementedException();
35
        }
36

    
37
        public Object lookupUserNameByGroup(String appKey, String username) {
38
                // TODO Auto-generated method stub
39
                throw new NotImplementedException();
40
        }
41

    
42
        public Object lookupPan(String appKey, String pan1) {
43
                // TODO Auto-generated method stub
44
                throw new NotImplementedException();
45
        }
46

    
47
        public Object lookupPan2(String appKey, String pan2) {
48
                // TODO Auto-generated method stub
49
                throw new NotImplementedException();
50
        }
51

    
52
        public Object lookupPanCc(String appKey, String panCC) {
53
                // TODO Auto-generated method stub
54
                throw new NotImplementedException();
55
        }
56

    
57
        public int deleteUser(String appKey, String username) {
58
                // TODO Auto-generated method stub
59
                throw new NotImplementedException();
60
        }
61

    
62
        public Object searchUserByFilter(String appKey, String searchFilter) {
63
                // TODO Auto-generated method stub
64
                throw new NotImplementedException();
65
        }
66
}