| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | | package com.matrix.system.common.authority.strategy; |  |   |  | /** |  |  * 登录策略接口 |  |  *  |  |  * @author JIANGYOUYAO |  |  * @email 935090232@qq.com |  |  * @date 2017年12月9日 |  |  */ |  | public interface LoginStrategy { |  |   |  |     /** |  |      * 登录接口,实现具体的登录验证方法,需要返回一个用户对象 |  |      *  |  |      * @author JIANGYOUYAO |  |      * @email 935090232@qq.com |  |      * @date Dec 10, 2017 |  |      * @return |  |      */ |  |     public Object login(); |  |   |  | } | 
 |