com.flagwind.security.Principal Maven / Gradle / Ivy
package com.flagwind.security;
/**
* 定义用户对象的基本功能
*/
public interface Principal {
/**
* 获取当前用户的凭证。
* @property
* @return string
*/
Credential getCredential();
/**
* 获取当前用户是否为有效。
* @property
* @return boolean
*/
boolean isAuthenticated();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy