All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flagwind.security.Principal Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package com.flagwind.security;

/**
 * 定义用户对象的基本功能
 */
public interface Principal {
    /**
     * 获取当前用户的凭证。
     * @property
     * @return string
     */
    Credential getCredential();

    /**
     * 获取当前用户是否为有效。
     * @property
     * @return boolean
     */
    boolean isAuthenticated();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy