Skip to content

Commit

Permalink
Mark new core authenticators as experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterj committed Jan 26, 2020
1 parent 0a7fc78 commit 959fbbf
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 0 deletions.
Expand Up @@ -15,6 +15,8 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
*/
interface EntrypointFactoryInterface
{
Expand Down
Expand Up @@ -15,6 +15,8 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
*/
interface GuardFactoryInterface
{
Expand Down
Expand Up @@ -20,6 +20,8 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
*/
class LazyGuardManagerListener extends GuardManagerListener
{
Expand Down
Expand Up @@ -19,6 +19,8 @@
* An optional base class that creates the necessary tokens for you.
*
* @author Ryan Weaver <ryan@knpuniversity.com>
*
* @experimental in 5.1
*/
abstract class AbstractAuthenticator implements AuthenticatorInterface
{
Expand Down
Expand Up @@ -22,6 +22,8 @@
* A base class to make form login authentication easier!
*
* @author Ryan Weaver <ryan@knpuniversity.com>
*
* @experimental in 5.1
*/
abstract class AbstractFormLoginAuthenticator extends AbstractAuthenticator implements AuthenticationEntryPointInterface
{
Expand Down
Expand Up @@ -22,6 +22,10 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
* @author Fabien Potencier <fabien@symfony.com>
*
* @final
* @experimental in 5.1
*/
class AnonymousAuthenticator implements AuthenticatorInterface
{
Expand Down
Expand Up @@ -23,6 +23,8 @@
* @author Ryan Weaver <ryan@knpuniversity.com>
* @author Amaury Leroux de Lens <amaury@lerouxdelens.com>
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
*/
interface AuthenticatorInterface
{
Expand Down
Expand Up @@ -29,6 +29,10 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
* @author Fabien Potencier <fabien@symfony.com>
*
* @final
* @experimental in 5.1
*/
class FormLoginAuthenticator extends AbstractFormLoginAuthenticator
{
Expand Down
Expand Up @@ -23,6 +23,10 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
* @author Fabien Potencier <fabien@symfony.com>
*
* @final
* @experimental in 5.1
*/
class HttpBasicAuthenticator implements AuthenticatorInterface, AuthenticationEntryPointInterface
{
Expand Down
Expand Up @@ -21,6 +21,8 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @property EncoderFactoryInterface $encoderFactory
*
* @experimental in 5.1
*/
trait UsernamePasswordTrait
{
Expand Down
Expand Up @@ -25,6 +25,12 @@
use Symfony\Component\Security\Guard\Token\PreAuthenticationGuardToken;
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;

/**
* @author Wouter de Jong <wouter@wouterj.nl>
* @author Ryan Weaver <ryan@knpuniversity.com>
*
* @experimental in 5.1
*/
class GuardAuthenticationManager implements AuthenticationManagerInterface
{
use GuardAuthenticationProviderTrait;
Expand Down
Expand Up @@ -20,6 +20,10 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
* @author Ryan Weaver <ryan@knpuniversity.com>
* @author Amaury Leroux de Lens <amaury@lerouxdelens.com>
*
* @experimental in 5.1
*/
class GuardManagerListener
{
Expand Down

0 comments on commit 959fbbf

Please sign in to comment.