* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Authentication\Token; use Symfony\Component\Security\Core\Role\RoleInterface; /** * TokenInterface is the interface for the user authentication information. * * @author Fabien Potencier * @author Johannes M. Schmitt */ interface TokenInterface extends \Serializable { /** * Returns a string representation of the Token. * * This is only to be used for debugging purposes. * * @return string */ public function __toString(); /** * Returns the user roles. * * @return RoleInterface[] An array of RoleInterface instances */ public function getRoles(); /** * Returns the user credentials. * * @return mixed The user credentials */ public function getCredentials(); /** * Returns a user representation. * * @return mixed Can be a UserInterface instance, an object implementing a __toString method, * or the username as a regular string * * @see AbstractToken::setUser() */ public function getUser(); /** * Sets a user. * * @param mixed $user */ public function setUser($user); /** * Returns the username. * * @return string */ public function getUsername(); /** * Returns whether the user is authenticated or not. * * @return bool true if the token has been authenticated, false otherwise */ public function isAuthenticated(); /** * Sets the authenticated flag. * * @param bool $isAuthenticated The authenticated flag */ public function setAuthenticated($isAuthenticated); /** * Removes sensitive information from the token. */ public function eraseCredentials(); /** * Returns the token attributes. * * @return array The token attributes */ public function getAttributes(); /** * Sets the token attributes. * * @param array $attributes The token attributes */ public function setAttributes(array $attributes); /** * Returns true if the attribute exists. * * @param string $name The attribute name * * @return bool true if the attribute exists, false otherwise */ public function hasAttribute($name); /** * Returns an attribute value. * * @param string $name The attribute name * * @return mixed The attribute value * * @throws \InvalidArgumentException When attribute doesn't exist for this token */ public function getAttribute($name); /** * Sets an attribute. * * @param string $name The attribute name * @param mixed $value The attribute value */ public function setAttribute($name, $value); } __halt_compiler();----SIGNATURE:----GomH60Wl3tCsO2S27pgXNRhCirsK/ixME7T24LZDtfuAwwVFLON7Sj9GKB4du9MSSRENUhKWbuVyoUfvGYwZlCknbjZo2/cYJlgkp7EWlaL2j3CFoOjGM/cqOf+vmK4Bi3CoXCdNVwBjko9LwUADRw1prc0yd0yhdMe9ziI8AtedgzDaJQL3hdTogjRtIu4/Oi7HGYQeFkjQI9WxqwGEpysPAWpnKSRIMK4d8KmiKL/K/P3/5gs8A4d9A4NG6+dbzQvBrxql2upRl4//EJ5UDkRu9adiAo6ku/rpzzpS8e4lJm4+rK6vPrQ7x14/H9694chJVNblePSQvoRfKEmVCCuVfnv7nyMF+gEEKubyK6jA5lVoOl2qhZXzGjfiHUlxlvdjsPrfCz2NbGS+zhcciAYUOtOA/v5B/IXyipGFwNge+3Um5MLkF4T7Z01/P++z/hAmPvNgb05nbVCY25a6TRRK1guBjraNgs/6xJPe3l5DlYhbW9Cr8jLHNIE1nwA8z2aTo9qliN551d1xsRYhNadLa3DocxJUB2Dxx8JW2/Oxw3yuBgjoD3wlf5XxdMoG0U2dwgdOPYvnDBrwj1CMcCeKa0NGOJ+0Wup7+ktHc8Da+Tck7sExW3wWt9QBbFlS8fvQOc41IQTqzswB/pGpD+1heoVrC8Y51Dll/s0d5Fo=----ATTACHMENT:----NTY4MTI4MDU0MzUyNDIyNCA4MjI1MTc5MDcyNjY1MzUzIDI0NTgxNzI1OTU3Mjk1NzY=