PHP 클래스 Symfony\Component\Security\Core\Authentication\Token\AbstractToken

저자: Fabien Potencier ([email protected])
저자: Johannes M. Schmitt ([email protected])
상속: implements Symfony\Component\Security\Core\Authentication\Token\TokenInterface
파일 보기 프로젝트 열기: symfony/symfony 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( array $roles = [] ) Constructor.
__toString ( )
eraseCredentials ( )
getAttribute ( string $name ) : mixed Returns an attribute value.
getAttributes ( ) : array Returns the token attributes.
getRoles ( )
getUser ( )
getUsername ( )
hasAttribute ( string $name ) : boolean Returns true if the attribute exists.
isAuthenticated ( )
serialize ( )
setAttribute ( string $name, mixed $value ) Sets an attribute.
setAttributes ( array $attributes ) Sets the token attributes.
setAuthenticated ( $authenticated )
setUser ( string | object $user ) Sets the user in the token.
unserialize ( $serialized )

비공개 메소드들

메소드 설명
hasUserChanged ( Symfony\Component\Security\Core\User\UserInterface $user )

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( array $roles = [] )
$roles array

__toString() 공개 메소드

public __toString ( )

eraseCredentials() 공개 메소드

public eraseCredentials ( )

getAttribute() 공개 메소드

Returns an attribute value.
public getAttribute ( string $name ) : mixed
$name string The attribute name
리턴 mixed The attribute value

getAttributes() 공개 메소드

Returns the token attributes.
public getAttributes ( ) : array
리턴 array The token attributes

getRoles() 공개 메소드

public getRoles ( )

getUser() 공개 메소드

public getUser ( )

getUsername() 공개 메소드

public getUsername ( )

hasAttribute() 공개 메소드

Returns true if the attribute exists.
public hasAttribute ( string $name ) : boolean
$name string The attribute name
리턴 boolean true if the attribute exists, false otherwise

isAuthenticated() 공개 메소드

public isAuthenticated ( )

serialize() 공개 메소드

public serialize ( )

setAttribute() 공개 메소드

Sets an attribute.
public setAttribute ( string $name, mixed $value )
$name string The attribute name
$value mixed The attribute value

setAttributes() 공개 메소드

Sets the token attributes.
public setAttributes ( array $attributes )
$attributes array The token attributes

setAuthenticated() 공개 메소드

public setAuthenticated ( $authenticated )

setUser() 공개 메소드

The user can be a UserInterface instance, or an object implementing a __toString method or the username as a regular string.
public setUser ( string | object $user )
$user string | object The user

unserialize() 공개 메소드

public unserialize ( $serialized )