1
2
3
4
5 package gboat2.web.service;
6
7 import gboat2.web.exception.ValidateException;
8 import gboat2.web.model.Auth;
9 import gboat2.web.model.UserGroupOrganMapper;
10
11 import java.util.List;
12
13
14
15
16
17
18
19
20
21 public interface IUserAuthService {
22
23
24
25
26
27
28
29 public boolean validateUser(String userName,String password)throws ValidateException;
30
31
32
33
34
35
36 public List<Auth> getAuth(String userName) ;
37
38
39
40
41
42
43
44
45 public String convertOuterUserNameToInnerUserName(String userName );
46
47
48
49
50
51
52 public List<UserGroupOrganMapper> convertOuterAuthToInnerAuth(String userName);
53
54 }