54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Lexik\Bundle\JWTAuthenticationBundle\Event;
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Security\Core\Exception\AuthenticationException;
|
|
use Symfony\Contracts\EventDispatcher\Event;
|
|
|
|
/**
|
|
* AuthenticationFailureEvent.
|
|
*
|
|
* @author Emmanuel Vella <vella.emmanuel@gmail.com>
|
|
* @author Robin Chalas <robin.chalas@gmail.com>
|
|
*/
|
|
class AuthenticationFailureEvent extends Event
|
|
{
|
|
protected AuthenticationException $exception;
|
|
protected ?Response $response;
|
|
protected ?Request $request;
|
|
|
|
public function __construct(?AuthenticationException $exception, ?Response $response, ?Request $request = null)
|
|
{
|
|
$this->exception = $exception;
|
|
$this->response = $response;
|
|
$this->request = $request;
|
|
}
|
|
|
|
public function getException(): AuthenticationException
|
|
{
|
|
return $this->exception;
|
|
}
|
|
|
|
public function getResponse(): ?Response
|
|
{
|
|
return $this->response;
|
|
}
|
|
|
|
public function setResponse(Response $response): void
|
|
{
|
|
$this->response = $response;
|
|
}
|
|
|
|
public function getRequest(): ?Request
|
|
{
|
|
return $this->request;
|
|
}
|
|
|
|
public function setRequest(Request $request)
|
|
{
|
|
$this->request = $request;
|
|
}
|
|
}
|