1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package org.apereo.cas.web.landtool.single.service;
|
| import java.util.List;
|
| /**
| * 多端登录的处理
| *
| */
| public interface UserIdObtainService {
|
| /**
| * 通过登录方式查询其他的id
| *
| * @param clientName 登录方式
| * @param id 用户id
| * @return 所有用户id
| */
| List<String> obtain(String clientName, String userId);
| }
|
|