| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| UserInfoHolder |
|
| 1.0;1 |
| 1 | package com.ctrip.framework.apollo.portal.auth; | |
| 2 | ||
| 3 | import com.ctrip.framework.apollo.portal.entity.po.UserInfo; | |
| 4 | ||
| 5 | /** | |
| 6 | * 获取登录用户的信息,不同的公司应该有不同的实现 | |
| 7 | */ | |
| 8 | public interface UserInfoHolder { | |
| 9 | ||
| 10 | UserInfo getUser(); | |
| 11 | ||
| 12 | } |